aboutsummaryrefslogtreecommitdiff
path: root/cmake/showoptions.cmake
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2011-08-04 22:53:33 +0200
committerclick <click@gonnamakeyou.com>2011-08-04 22:53:33 +0200
commitd7715fa4b8d18d518c1247bcb77c0ef76e9e4b17 (patch)
treef83e80743b055e843cd968018a85c56374dd4708 /cmake/showoptions.cmake
parent2056af63f01c177376fc6bebb41ce158cc6016b4 (diff)
Buildsystem/Windows: Add support for reading commithash and commitdate directly from the executable binaries.
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.
Diffstat (limited to 'cmake/showoptions.cmake')
-rw-r--r--cmake/showoptions.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake
index 84d72356d06..31e1b412b32 100644
--- a/cmake/showoptions.cmake
+++ b/cmake/showoptions.cmake
@@ -1,8 +1,9 @@
# output generic information about the core and buildtype chosen
message("")
-message("* TrinityCore commithash : ${rev_hash_str}")
+message("* TrinityCore rev. hash : ${rev_hash}")
+message("* TrinityCore rev. date : ${rev_date}")
if( UNIX )
- message("* Build binaries in : ${CMAKE_BUILD_TYPE} mode")
+ message("* TrinityCore buildtype : ${CMAKE_BUILD_TYPE}")
endif()
message("")