-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added version.h file for v0.1 release, and included in daisy.h * added version to CMakeLists.txt * added changelog file. Co-authored-by: stephenhensley <[email protected]>
- Loading branch information
1 parent
157f04a
commit 10d6142
Showing
4 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# libDaisy Changelog | ||
|
||
## v0.1.0 | ||
|
||
Initial Release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
project (libdaisy) | ||
project (libdaisy VERSION 0.1.0) | ||
cmake_minimum_required(VERSION 3.20) | ||
|
||
set(TARGET daisy) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
|
||
#include <stdint.h> | ||
#include "daisy_core.h" | ||
#include "version.h" | ||
|
||
/** @addtogroup boards | ||
@{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#pragma once | ||
#ifndef DSY_VERSION_H | ||
#define DSY_VERSION_H | ||
|
||
#define LIBDAISY_VER_MAJ 0 | ||
#define LIBDAISY_VER_MIN 1 | ||
#define LIBDAISY_VER_PATCH 0 | ||
|
||
#endif |