mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 05:06:24 +00:00
* feat(Core/DBUpdater): implement db auto update * 1 * 2 * 3 * Some minor improvements * add find bin for mysql 8.0 * lic Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
20 lines
1002 B
CMake
20 lines
1002 B
CMake
#ifndef __REVISION_H__
|
|
#define __REVISION_H__
|
|
#define _REVISION "@rev_id_str@"
|
|
#define _HASH "@rev_hash@"
|
|
#define _DATE "@rev_date@"
|
|
#define _BRANCH "@rev_branch@"
|
|
#define _CMAKE_COMMAND R"(@CMAKE_COMMAND@)"
|
|
#define _CMAKE_VERSION R"(@CMAKE_VERSION@)"
|
|
#define _CMAKE_HOST_SYSTEM R"(@CMAKE_HOST_SYSTEM_NAME@ @CMAKE_HOST_SYSTEM_VERSION@)"
|
|
#define _SOURCE_DIRECTORY R"(@CMAKE_SOURCE_DIR@)"
|
|
#define _BUILD_DIRECTORY R"(@BUILDDIR@)"
|
|
#define _MYSQL_EXECUTABLE R"(@MYSQL_EXECUTABLE@)"
|
|
#define VER_COMPANYNAME_STR "AzerothCore"
|
|
#define VER_LEGALCOPYRIGHT_STR "(c)2016-@rev_year@ AzerothCore"
|
|
#define VER_FILEVERSION 0,0,0
|
|
#define VER_FILEVERSION_STR "@rev_hash@ @rev_date@ (@rev_branch@ branch)"
|
|
#define VER_PRODUCTVERSION VER_FILEVERSION
|
|
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
|
|
#endif // __REVISION_H__
|