File: MoleQueueCPackOptions.cmake.in

package info (click to toggle)
molequeue 0.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,924 kB
  • sloc: cpp: 22,039; python: 478; xml: 364; sh: 59; makefile: 14
file content (20 lines) | stat: -rw-r--r-- 895 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file is configured at cmake time, loaded at cpack time.

# NSIS specific settings
if(CPACK_GENERATOR MATCHES "NSIS")
  set(CPACK_NSIS_MUI_ICON "@CMAKE_SOURCE_DIR@/molequeue/app/icons\\\\molequeue.ico")
  set(CPACK_NSIS_HELP_LINK "http:\\\\openchemistry.org")
  set(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\openchemistry.org")
  set(CPACK_PACKAGE_EXECUTABLES "molequeue" "MoleQueue")
  set(CPACK_CREATE_DESKTOP_LINKS "molequeue")
  set(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\MoleQueue.exe")
  set(CPACK_NSIS_MENU_LINKS
    "http://wiki.openchemistry.org/MoleQueue_@CPACK_PACKAGE_VERSION@"
    "Release Notes"
    "http://openchemistry.org/" "Open Chemistry Project")
  set(CPACK_NSIS_MODIFY_PATH ON)
endif(CPACK_GENERATOR MATCHES "NSIS")

if("${CPACK_GENERATOR}" STREQUAL "PackageMaker")
  set(CPACK_PACKAGE_DEFAULT_LOCATION "/Applications")
endif("${CPACK_GENERATOR}" STREQUAL "PackageMaker")