mirror of https://github.com/dnomd343/klotski.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
599 B
42 lines
599 B
#include "klotski.h"
|
|
#include "metadata.h"
|
|
|
|
int get_version_major() {
|
|
return VERSION_MAJOR;
|
|
}
|
|
|
|
int get_version_minor() {
|
|
return VERSION_MINOR;
|
|
}
|
|
|
|
int get_version_patch() {
|
|
return VERSION_PATCH;
|
|
}
|
|
|
|
const char* get_author() {
|
|
return AUTHOR;
|
|
}
|
|
|
|
const char* get_version() {
|
|
return VERSION_STR;
|
|
}
|
|
|
|
const char* get_commit_id() {
|
|
return GIT_COMMIT_ID;
|
|
}
|
|
|
|
const char* get_build_time() {
|
|
return BUILD_TIME;
|
|
}
|
|
|
|
const char* get_project_url() {
|
|
return PROJECT_URL;
|
|
}
|
|
|
|
const char* get_system_info() {
|
|
return SYSTEM;
|
|
}
|
|
|
|
const char* get_compiler_info() {
|
|
return COMPILER;
|
|
}
|
|
|