From 470fb87ae1a8fd2272c8bc44fff1cec0679755a4 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 23 Jan 2011 23:56:21 +0100 Subject: [PATCH] Win installer: do not append version to install directory anymore Per default do not append the version to the installation directory anymore as this causes unneccessary problems when not properly uninstalling an older version. Instead files should be overwritten by recent ones from now on. Partially closes #3149779. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 824592566..24c5edd52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -651,7 +651,7 @@ SET(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}") IF(VERSION_SUFFIX) SET(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}-${VERSION_SUFFIX}") ENDIF(VERSION_SUFFIX) -SET(CPACK_PACKAGE_INSTALL_DIRECTORY "LMMS ${VERSION}") +SET(CPACK_PACKAGE_INSTALL_DIRECTORY "LMMS") IF(WIN32) SET(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/data/nsis_branding.bmp") SET(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/data/lmms.ico")