-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 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 |
---|---|---|
@@ -1,10 +1,18 @@ | ||
#ifndef SPIRIT_VERSION_H | ||
#define SPIRIT_VERSION_H | ||
|
||
#define SPIRIT_VERSION_MAJOR 0 | ||
#define SPIRIT_VERSION_MINOR 1 | ||
#define SPIRIT_VERSION_PATCH 0 | ||
namespace spirit { | ||
|
||
#define SPIRIT_VERSION_STRING "0.1.0" | ||
namespace version { | ||
|
||
constexpr uint32_t major = 0; | ||
constexpr uint32_t minor = 1; | ||
constexpr uint32_t patch = 0; | ||
|
||
constexpr char string[] = "0.1.0"; | ||
|
||
} // namespace version | ||
|
||
} // namespace spirit | ||
|
||
#endif // SPIRIT_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