28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
|
|
//
|
||
|
|
// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge.
|
||
|
|
// Copyright © 2004-2020 YaPB Development Team <team@yapb.ru>.
|
||
|
|
//
|
||
|
|
// This program is free software: you can redistribute it and/or modify
|
||
|
|
// it under the terms of the GNU General Public License as published by
|
||
|
|
// the Free Software Foundation, either version 3 of the License, or
|
||
|
|
// (at your option) any later version.
|
||
|
|
//
|
||
|
|
// This program is distributed in the hope that it will be useful,
|
||
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
// GNU General Public License for more details.
|
||
|
|
//
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
// generated by meson build system
|
||
|
|
#ifndef MODULE_BUILD_HASH
|
||
|
|
# define MODULE_BUILD_HASH "@commitHash@"
|
||
|
|
# define MODULE_BUILD_AUTHOR @commitAuthor@
|
||
|
|
# define MODULE_BUILD_COUNT "@commitCount@"
|
||
|
|
# define MODULE_BUILD_MACHINE "@buildMachine@"
|
||
|
|
# define MODULE_BUILD_COMPILER "@buildCompiler@"
|
||
|
|
# define MODULE_BOT_VERSION "@buildVersion@"
|
||
|
|
# define MODULE_BOT_VERSION_FILE @buildVersionWin@,@commitCount@
|
||
|
|
# define MODULE_BOT_BUILD_ID "@commitCount@:@commitHash@"
|
||
|
|
#endif
|