You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
472 B
16 lines
472 B
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)
|
|
endif()
|
|
endif()
|
|
|
|
|