20 lines
724 B
C
20 lines
724 B
C
/*
|
|
* This software is licensed under the terms of the MIT-License
|
|
* See COPYING for further information.
|
|
* ---
|
|
* Copyright (c) 2011-2018, Lukas Weber <laochailan@web.de>.
|
|
* Copyright (c) 2012-2018, Andrei Alexeyev <akari@alienslab.net>.
|
|
*/
|
|
|
|
#include "taisei.h"
|
|
|
|
#include "version.h"
|
|
|
|
const char *const TAISEI_VERSION = "${VERSION({string})}";
|
|
const char *const TAISEI_VERSION_FULL = "${VERSION({full_string})}";
|
|
const char *const TAISEI_VERSION_BUILD_TYPE = "${MESON_BUILD_TYPE}";
|
|
|
|
const uint8_t TAISEI_VERSION_MAJOR = ${VERSION({major})};
|
|
const uint8_t TAISEI_VERSION_MINOR = ${VERSION({minor})};
|
|
const uint8_t TAISEI_VERSION_PATCH = ${VERSION({patch})};
|
|
const uint16_t TAISEI_VERSION_TWEAK = ${VERSION({tweak})};
|