cmake: fix package generation on Mac OS X

This commit is contained in:
Marc-André Moreau
2013-09-09 21:42:25 -04:00
parent 2c8bef26de
commit 660e904a53
4 changed files with 110 additions and 90 deletions

View File

@@ -0,0 +1,10 @@
# This file is configured at cmake time, and loaded at cpack time.
# To pass variables to cpack from cmake, they must be configured in this file.
if("${CPACK_GENERATOR}" STREQUAL "PackageMaker")
if(CMAKE_PACKAGE_QTGUI)
set(CPACK_PACKAGE_DEFAULT_LOCATION "/Applications")
else()
set(CPACK_PACKAGE_DEFAULT_LOCATION "/usr")
endif()
endif()