-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add generated version_config.h file so version is declared in one place
- Loading branch information
1 parent
a3e7f94
commit bab5012
Showing
2 changed files
with
18 additions
and
0 deletions.
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,9 @@ | ||
#ifndef BLOCKS_VERSION_H | ||
#define BLOCKS_VERSION_H | ||
|
||
#define BLOCKS_VERSION "0.1.1" | ||
#define BLOCKS_VERSION_MAJOR 0 | ||
#define BLOCKS_VERSION_MINOR 1 | ||
#define BLOCKS_VERSION_PATCH 1 | ||
|
||
#endif // BLOCKS_VERSION_H |
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 @@ | ||
#ifndef BLOCKS_VERSION_H | ||
#define BLOCKS_VERSION_H | ||
|
||
#define BLOCKS_VERSION "@PROJECT_VERSION@" | ||
#define BLOCKS_VERSION_MAJOR @PROJECT_VERSION_MAJOR@ | ||
#define BLOCKS_VERSION_MINOR @PROJECT_VERSION_MINOR@ | ||
#define BLOCKS_VERSION_PATCH @PROJECT_VERSION_PATCH@ | ||
|
||
#endif // BLOCKS_VERSION_H |