mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
13 lines
576 B
CMake
13 lines
576 B
CMake
#ifndef __REVISION_H__
|
|
#define __REVISION_H__
|
|
#define _HASH "@rev_hash@"
|
|
#define _DATE "@rev_date@"
|
|
#define _BRANCH "@rev_branch@"
|
|
#define VER_COMPANYNAME_STR "TrinityCore Developers"
|
|
#define VER_LEGALCOPYRIGHT_STR "(c)2008-2013 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
|
|
#endif // __REVISION_H__
|