From dc1c43bb0a52eaa0cd918308ff5a4d87f4d88f8f Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Mon, 20 Dec 2010 01:30:45 +0100 Subject: [PATCH] Build system: fixed CPACK_NSIS_DISPLAY_NAME Use "LMMS ${VERSION}" for the CPACK_NSIS_DISPLAY_NAME variable. This affects the start menu entries on Windows where we want the user to be able to distinct between various installed versions of LMMS easily. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 470dfe00d..0826aab71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -664,7 +664,7 @@ IF(WIN32) SET(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/data/nsis_branding.bmp") SET(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/data/lmms.ico") SET(CPACK_NSIS_INSTALLED_ICON_NAME "lmms.exe") -SET(CPACK_NSIS_DISPLAY_NAME "Linux MultiMedia Studio (LMMS)") +SET(CPACK_NSIS_DISPLAY_NAME "LMMS ${VERSION}") SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\lmms.sourceforge.net") SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\lmms.sourceforge.net") SET(CPACK_NSIS_CONTACT "lmms-devel@lists.sourceforge.net")