summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasile Vilvoiu <vasi@vilvoiu.ro>2022-04-21 19:26:03 +0300
committerVasile Vilvoiu <vasi@vilvoiu.ro>2022-04-21 19:26:03 +0300
commit46fcb6885638cd41d94db44da3038e327812d53f (patch)
treec510a4d7fbbe230369cffe4d6d033c35f87454c5
parent4b9517a148bcd6f47cc2f20a83355093811cc04b (diff)
Fix usage of bad version macros in header file.
Closes #27.
-rw-r--r--src/specgram.hpp.in8
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