From d1ba972c596e38085c49208eee759302a57d1662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 9 Feb 2015 21:00:45 +0100 Subject: SCRATCH move some cmake bits --- application/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'application/CMakeLists.txt') diff --git a/application/CMakeLists.txt b/application/CMakeLists.txt index 58a90efa..9e94cdad 100644 --- a/application/CMakeLists.txt +++ b/application/CMakeLists.txt @@ -29,6 +29,11 @@ set(MultiMC_UPDATER false CACHE BOOL "Whether or not the update system is enable # Notification URL set(MultiMC_NOTIFICATION_URL "" CACHE STRING "URL for checking for notifications.") +#### Check the current Git commit +include(GitFunctions) +git_run(COMMAND rev-parse HEAD DEFAULT "Unknown" OUTPUT_VAR MultiMC_GIT_COMMIT) +message(STATUS "Git commit: ${MultiMC_GIT_COMMIT}") + set(MultiMC_RELEASE_VERSION_NAME "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}") if(MultiMC_VERSION_HOTFIX GREATER 0) set(MultiMC_RELEASE_VERSION_NAME "${MultiMC_RELEASE_VERSION_NAME}.${MultiMC_VERSION_HOTFIX}") @@ -50,6 +55,9 @@ endif() message(STATUS "MultiMC 5 Version: ${MultiMC_VERSION_STRING}") +#### Custom target to just print the version. +add_custom_target(version echo "Version: ${MultiMC_VERSION_STRING}") + # If the update system is enabled, make sure MultiMC_CHANLIST_URL and MultiMC_VERSION_CHANNEL are set. if(MultiMC_UPDATER) if(MultiMC_VERSION_CHANNEL STREQUAL "") -- cgit v1.2.3