taisei/src/version_auto.c.in
2024-05-17 04:58:47 +02:00

17 lines
640 B
C

/*
* This software is licensed under the terms of the MIT License.
* See COPYING for further information.
* ---
* Copyright (c) 2011-2024, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2024, Andrei Alexeyev <akari@taisei-project.org>.
*/
#include "version.h"
const char *const TAISEI_VERSION = "${VERSION({string})}";
const char *const TAISEI_VERSION_FULL = "${VERSION({full_string})}";
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})};