-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated version config to mirror that of milk
Created ImageStreamIO_config.h.in that defines project name & version params. Version gets set in CMakeLists.txt and config header gets dynamically generated. Updated ImageStruct.h to include ImageStreamIO_config.h. Added ImageStreamIO_config.h to .gitignore.
- Loading branch information
Showing
4 changed files
with
20 additions
and
7 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 |
---|---|---|
|
@@ -13,3 +13,4 @@ ImCreate_test | |
ImCreate_cube | ||
ImageStreamIOWrap.egg-info | ||
setup.cfg | ||
ImageStreamIO_config.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
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 @@ | ||
#define PROJECT_NAME "@PROJECT_NAME@" | ||
#define VERSION_MAJOR @VERSION_MAJOR@ | ||
#define VERSION_MINOR @VERSION_MINOR@ | ||
#define VERSION_PATCH @VERSION_PATCH@ | ||
#define VERSION_OPTION "@VERSION_OPTION@" | ||
#define IMAGESTRUCT_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@" |
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