diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2022-04-21 19:26:03 +0300 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2022-04-21 19:26:03 +0300 |
| commit | 46fcb6885638cd41d94db44da3038e327812d53f (patch) | |
| tree | c510a4d7fbbe230369cffe4d6d033c35f87454c5 | |
| parent | 4b9517a148bcd6f47cc2f20a83355093811cc04b (diff) | |
Fix usage of bad version macros in header file.
Closes #27.
| -rw-r--r-- | src/specgram.hpp.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/specgram.hpp.in b/src/specgram.hpp.in index 3b137d9..b2b0457 100644 --- a/src/specgram.hpp.in +++ b/src/specgram.hpp.in @@ -14,9 +14,9 @@ /* * version */ -#define SPECGRAM_VERSION_MAJOR @specgram_VERSION_MAJOR@ -#define SPECGRAM_VERSION_MINOR @specgram_VERSION_MINOR@ -#define SPECGRAM_VERSION_PATCH @specgram_VERSION_PATCH@ +#define SPECGRAM_VERSION_MAJOR @VERSION_MAJOR@ +#define SPECGRAM_VERSION_MINOR @VERSION_MINOR@ +#define SPECGRAM_VERSION_PATCH @VERSION_PATCH@ #define SPECGRAM_VERSION_BUILD "@GIT_HASH@" #ifdef GIT_BUILD @@ -25,4 +25,4 @@ #define SPECGRAM_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@" #endif -#endif
\ No newline at end of file +#endif |
