mirror of https://github.com/dnomd343/klotski.git
Dnomd343
2 years ago
6 changed files with 51 additions and 4 deletions
@ -0,0 +1,14 @@ |
|||||
|
#include "klotski.h" |
||||
|
#include "version.h" |
||||
|
|
||||
|
int get_version_major() { |
||||
|
return VERSION_MAJOR; |
||||
|
} |
||||
|
|
||||
|
int get_version_minor() { |
||||
|
return VERSION_MINOR; |
||||
|
} |
||||
|
|
||||
|
int get_version_patch() { |
||||
|
return VERSION_PATCH; |
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
#pragma once |
||||
|
|
||||
|
#define VERSION_MAJOR @klotski-core_VERSION_MAJOR@ |
||||
|
#define VERSION_MINOR @klotski-core_VERSION_MINOR@ |
||||
|
#define VERSION_PATCH @klotski-core_VERSION_PATCH@ |
Loading…
Reference in new issue