19 lines
663 B
CMake
19 lines
663 B
CMake
set(IS_APPLE @APPLE@)
|
|
set(CMAKE_PACKAGE_QTGUI @CMAKE_PACKAGE_QTGUI@)
|
|
|
|
if(CMAKE_PACKAGE_QTGUI)
|
|
set(CPACK_PACKAGE_EXECUTABLES "cmake-gui" "CMake (cmake-gui)" ${CPACK_PACKAGE_EXECUTABLES})
|
|
set(CPACK_CREATE_DESKTOP_LINKS "cmake-gui" ${CPACK_CREATE_DESKTOP_LINKS})
|
|
if(IS_APPLE)
|
|
# for apple install we set the install prefix to
|
|
# / and then install
|
|
# cmake into the bundle for cmake-gui and must use DESTDIR
|
|
set(CPACK_SET_DESTDIR TRUE)
|
|
# we also want to run post install stuff to setup command line
|
|
set(CPACK_POSTFLIGHT_SCRIPT "@CMAKE_POSTFLIGHT_SCRIPT@")
|
|
set(CPACK_POSTUPGRADE_SCRIPT "@CMAKE_POSTUPGRADE_SCRIPT@")
|
|
endif()
|
|
endif()
|
|
|
|
|