From fb4bb506f5ea61e041ff560ce2d2b60b8c0eb297 Mon Sep 17 00:00:00 2001 From: MrThatKid Date: Thu, 25 Jan 2018 09:23:35 -0800 Subject: [PATCH] Fix default installer directory --- CMake/CPackSetup.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/CPackSetup.cmake b/CMake/CPackSetup.cmake index 01d7c77948..5830c7d73e 100644 --- a/CMake/CPackSetup.cmake +++ b/CMake/CPackSetup.cmake @@ -44,7 +44,7 @@ if(WIN32) # This is currently done to maintain backwards compatibility. # However, removing these two will allow for multiple versions of StepMania # to be installed relatively cleanly. - set(CPACK_PACKAGE_INSTALL_DIRECTORY "StepMania ${SM_VERSION_MAJOR}") + set(CPACK_PACKAGE_INSTALL_DIRECTORY "StepMania ${SM_VERSION_MAJOR}.${SM_VERSION_MINOR}") set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "StepMania ${SM_VERSION_MAJOR}") set(CPACK_NSIS_EXECUTABLES_DIRECTORY "Program") set(CPACK_NSIS_INSTALL_ROOT "C:\\\\Games")