diff --git a/Applications/Diffusion/CPackConfig.cmake.in b/Applications/Diffusion/CPackConfig.cmake.in index 8dc0b8fb1a..2f8556453c 100644 --- a/Applications/Diffusion/CPackConfig.cmake.in +++ b/Applications/Diffusion/CPackConfig.cmake.in @@ -1,31 +1,31 @@ include("@MITK_BINARY_DIR@/MITKCPackOptions.cmake") if(CPACK_GENERATOR MATCHES "NSIS") # set the package header icon for MUI SET(CPACK_PACKAGE_ICON "@MITK_SOURCE_DIR@\\mitk.bmp") # set the install/unistall icon used for the installer itself # There is a bug in NSIS that does not handle full unix paths properly. SET(CPACK_NSIS_MUI_ICON "@MITK_SOURCE_DIR@\\mitk.ico") SET(CPACK_NSIS_MUI_UNIICON "@MITK_SOURCE_DIR@\\mitk.ico") set(CPACK_NSIS_DISPLAY_NAME "MITK Diffusion") # tell cpack to create links to the doc files SET(CPACK_NSIS_MENU_LINKS "http://www.mitk.org" "MITK Web Site" ) # tell cpack the executables you want in the start menu as links SET(CPACK_PACKAGE_EXECUTABLES "MitkDiffusion;Start MITK Diffusion" CACHE INTERNAL "Collecting windows shortcuts to executables") - # tell cpack to create a desktop link to MainApp + # tell cpack to create a desktop link to mitkDiffusion SET(CPACK_CREATE_DESKTOP_LINKS "mitkDiffusion") SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\mitk.ico") SET(CPACK_NSIS_HELP_LINK "http:\\\\www.mitk.org") SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\www.mitk.org") SET(CPACK_NSIS_CONTACT mitk@mitk.org) SET(CPACK_NSIS_MODIFY_PATH ON) endif(CPACK_GENERATOR MATCHES "NSIS") diff --git a/Applications/Diffusion/CPackOptions.cmake b/Applications/Diffusion/CPackOptions.cmake index 24a3a64f85..c0c47d119b 100644 --- a/Applications/Diffusion/CPackOptions.cmake +++ b/Applications/Diffusion/CPackOptions.cmake @@ -1,18 +1,18 @@ # Set Diffusion specific CPack options set(CPACK_PACKAGE_EXECUTABLES "MitkDiffusion;MITK Diffusion") set(CPACK_PACKAGE_NAME "MITK-Diffusion") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MITK application for processing of MR diffusion imaging data.") # Major version is the year of release -set(CPACK_PACKAGE_VERSION_MAJOR "2012") +set(CPACK_PACKAGE_VERSION_MAJOR "2014") # Minor version is the month of release -set(CPACK_PACKAGE_VERSION_MINOR "12") +set(CPACK_PACKAGE_VERSION_MINOR "04") # Patch versioning is not intended to be done set(CPACK_PACKAGE_VERSION_PATCH "99") # this should result in names like 2011.09, 2012.06, ... # version has to be set explicitly to avoid such things as CMake creating the install directory "MITK Diffusion 2011.." set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") set(CPACK_PACKAGE_FILE_NAME "MITK-Diffusion-${CPACK_PACKAGE_VERSION}-${CPACK_PACKAGE_ARCH}")