mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
To view this information, check the "Product Version" field in Properties on the respective daemon. + Fix worldserver/authserver .rc file layouts and content (now adheres to MS standards *sighs*) + Change .serv info output to show corename followed by the commit date and hash + Include showing the versionstring on worldserver startup completion (on Aokromes' request) Thanks to Paradox for bugging me enough about it and the initial pull-request.
12 lines
505 B
CMake
12 lines
505 B
CMake
#ifndef __REVISION_H__
|
|
#define __REVISION_H__
|
|
#define _HASH "@rev_hash@"
|
|
#define _DATE "@rev_date@"
|
|
#define VER_COMPANYNAME_STR "TrinityCore Developers"
|
|
#define VER_LEGALCOPYRIGHT_STR "(c)2008-2011 TrinityCore"
|
|
#define VER_FILEVERSION 0,0,0
|
|
#define VER_FILEVERSION_STR "@rev_date@ (@rev_hash@)"
|
|
#define VER_PRODUCTVERSION VER_FILEVERSION
|
|
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
|
|
#endif // __REVISION_H__
|