From 4eec6e19076ab18940f95468620efd2d22d73b2c 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. (cherry picked from commit 470fb87ae1a8fd2272c8bc44fff1cec0679755a4) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b8cb1c38..2dffb35a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -768,7 +768,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")