mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
18 lines
890 B
CMake
18 lines
890 B
CMake
#ifndef __REVISION_DATA_H__
|
|
#define __REVISION_DATA_H__
|
|
#define _HASH "@rev_hash@"
|
|
#define _DATE "@rev_date@"
|
|
#define _BRANCH "@rev_branch@"
|
|
#define _SOURCE_DIRECTORY "@CMAKE_SOURCE_DIR@"
|
|
#define _MYSQL_EXECUTABLE "@MYSQL_EXECUTABLE@"
|
|
#define _FULL_DATABASE "TDB_full_world_335.60_2015_11_07.sql"
|
|
#define VER_COMPANYNAME_STR "TrinityCore Developers"
|
|
#define VER_LEGALCOPYRIGHT_STR "(c)2008-2015 TrinityCore"
|
|
#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
|
|
#define COMPILER_C_FLAGS "@CMAKE_C_FLAGS@"
|
|
#define COMPILER_CXX_FLAGS "@CMAKE_CXX_FLAGS@"
|
|
#endif // __REVISION_DATA_H__
|