-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrosophilaOmmatidiaExplorerCPackOptions.cmake.in
32 lines (25 loc) · 1.43 KB
/
DrosophilaOmmatidiaExplorerCPackOptions.cmake.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
if( CPACK_GENERATOR MATCHES "NSIS" )
# set the install/unistall icon used for the installer itself
# There is a bug in NSI that does not handle full unix paths properly.
# NOT WORKING
# The icon file (.ico) for the generated install program
# set(CPACK_NSIS_MUI_ICON "@GOFIGURE2_SOURCE_DIR@/Resources\\myappico.ico")
# The icon file (.ico) for the generated uninstall program.
# We use the default one!
# set(CPACK_NSIS_MUI_UNIICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
# A branding image that will be displayed inside the installer.
# We use the default one!
# set(CPACK_PACKAGE_ICON "@CMake_SOURCE_DIR@/Resources/fig\\splash.png")
set( CPACK_NSIS_COMPRESSOR "/SOLID lzma" )
set( CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\DrosophilaOmmatidiaExplorer.exe" )
set( CPACK_NSIS_DISPLAY_NAME "DrosophilaOmmatidiaExplorer 2015.04 is a fooo fooooo foooo" )
set( CPACK_NSIS_PACKAGE_NAME "DrosophilaOmmatidiaExplorer" )
set( CPACK_NSIS_HELP_LINK "http://sites.google.com/site/tttisatissuetracker" )
set( CPACK_NSIS_URL_INFO_ABOUT "http://sites.google.com/site/tttisatissuetracker" )
set( CPACK_NSIS_CONTACT "@CPACK_PACKAGE_CONTACT@" )
set( CPACK_NSIS_MODIFY_PATH OFF )
endif( CPACK_GENERATOR MATCHES "NSIS" )
if( CPACK_GENERATOR MATCHES "RPM" )
set( CPACK_RPM_PACKAGE_ARCHITECTURE "@CPACK_SYSTEM_NAME@" )
set( CPACK_RPM_PACKAGE_LICENSE "GPL" )
endif( CPACK_GENERATOR MATCHES "RPM" )