diff options
author | Forkk <forkk@forkk.net> | 2014-01-04 21:44:18 -0600 |
---|---|---|
committer | Forkk <forkk@forkk.net> | 2014-01-04 21:44:18 -0600 |
commit | ebc14a9d9d55b64d490ab07d3f11835f2f1f36b1 (patch) | |
tree | ada0c7d3eef823f0c433adf39a3a0ffd1712896a /CMakeLists.txt | |
parent | ee02eecfdce40f28aaff4e21edb6be0921d8702a (diff) | |
download | PrismLauncher-ebc14a9d9d55b64d490ab07d3f11835f2f1f36b1.tar.gz PrismLauncher-ebc14a9d9d55b64d490ab07d3f11835f2f1f36b1.tar.bz2 PrismLauncher-ebc14a9d9d55b64d490ab07d3f11835f2f1f36b1.zip |
Prepend a 5 to version strings.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7ac13fa0..ec81051e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -126,7 +126,7 @@ SET(MultiMC_NEWS_RSS_URL "http://multimc.org/rss.xml" CACHE STRING "URL to fetch ######## Set version numbers ######## -SET(MultiMC_VERSION_MAJOR 1) +SET(MultiMC_VERSION_MAJOR 0) SET(MultiMC_VERSION_MINOR 0) # Build number @@ -148,7 +148,7 @@ SET(MultiMC_UPDATER false CACHE BOOL "Whether or not the update system is enable SET(MultiMC_NOTIFICATION_URL "" CACHE STRING "URL for checking for notifications.") # Build a version string to display in the configure logs. -SET(MultiMC_VERSION_STRING "${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}") +SET(MultiMC_VERSION_STRING "5.${MultiMC_VERSION_MAJOR}.${MultiMC_VERSION_MINOR}") IF (MultiMC_VERSION_BUILD GREATER -1) SET(MultiMC_VERSION_STRING "${MultiMC_VERSION_STRING}.${MultiMC_VERSION_BUILD}") ENDIF () |