1 # Set Diffusion specific CPack options
3 set(CPACK_PACKAGE_EXECUTABLES
"MitkDiffusion;MITK Diffusion")
4 set(CPACK_PACKAGE_NAME "MITK-Diffusion")
5 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MITK application for processing of MR diffusion imaging data.")
6 # Major version is the year of release
7 set(CPACK_PACKAGE_VERSION_MAJOR
"2014")
8 # Minor version is the month of release
9 set(CPACK_PACKAGE_VERSION_MINOR
"10")
10 # Patch versioning is not intended to be done
11 set(CPACK_PACKAGE_VERSION_PATCH
"99")
13 # this should result in names like 2011.09, 2012.06, ...
14 # version has to be set explicitly to avoid such things as CMake creating the install directory "MITK Diffusion 2011.."
15 set(CPACK_PACKAGE_VERSION
"${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
17 set(CPACK_PACKAGE_FILE_NAME "MITK-Diffusion-${CPACK_PACKAGE_VERSION}-${CPACK_PACKAGE_ARCH}
")