-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #42 - store version number in single header file.
Store the version number in a dedicated header. Set the application version when starting. Extract the version in build script. Changing version number will force trigger a rebuild.
- Loading branch information
Alexandre Lavigne
committed
Jan 14, 2021
1 parent
15e50ae
commit 669ae61
Showing
4 changed files
with
28 additions
and
3 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
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
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
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,8 @@ | ||
#ifndef VERSION_H | ||
#define VERSION_H | ||
|
||
#define VERSION_MAJOR 1 | ||
#define VERSION_MINOR 9 | ||
#define VERSION_BUILD 0 | ||
|
||
#endif // VERSION_H |