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.
33 lines
1.1 KiB
33 lines
1.1 KiB
13 years ago
|
set(PROCESSORS 4)
|
||
|
set(CMAKE_RELEASE_DIRECTORY /Users/kitware/CMakeReleaseDirectory)
|
||
9 years ago
|
set(BOOTSTRAP_ARGS "--prefix=/ --docdir=doc/cmake")
|
||
9 years ago
|
set(HOST dragnipur)
|
||
13 years ago
|
set(MAKE_PROGRAM "make")
|
||
|
set(MAKE "${MAKE_PROGRAM} -j5")
|
||
10 years ago
|
set(CPACK_BINARY_GENERATORS "DragNDrop TGZ TZ")
|
||
13 years ago
|
set(CPACK_SOURCE_GENERATORS "TGZ TZ")
|
||
10 years ago
|
set(CPACK_DMG_FORMAT "UDBZ") #build using bzip2 for smaller package size
|
||
9 years ago
|
set(CC clang)
|
||
|
set(CXX clang++)
|
||
|
set(CFLAGS "")
|
||
|
set(CXXFLAGS "-stdlib=libc++")
|
||
13 years ago
|
set(INITIAL_CACHE "
|
||
|
CMAKE_BUILD_TYPE:STRING=Release
|
||
10 years ago
|
CMAKE_OSX_ARCHITECTURES:STRING=x86_64
|
||
9 years ago
|
CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.7
|
||
13 years ago
|
CMAKE_SKIP_BOOTSTRAP_TEST:STRING=TRUE
|
||
10 years ago
|
CPACK_SYSTEM_NAME:STRING=Darwin-x86_64
|
||
13 years ago
|
BUILD_QtDialog:BOOL=TRUE
|
||
11 years ago
|
CMake_GUI_DISTRIBUTE_WITH_Qt_LGPL:BOOL=TRUE
|
||
9 years ago
|
CMake_INSTALL_DEPENDENCIES:BOOL=ON
|
||
9 years ago
|
CMAKE_SKIP_RPATH:BOOL=TRUE
|
||
|
CMake_NO_C_STANDARD:BOOL=TRUE
|
||
|
CMake_NO_CXX_STANDARD:BOOL=TRUE
|
||
|
CMake_TEST_NO_FindPackageModeMakefileTest:BOOL=TRUE
|
||
13 years ago
|
")
|
||
9 years ago
|
set(ENV [[
|
||
|
export CMAKE_PREFIX_PATH='/Users/kitware/SDKs/qt-5.6.0-clang-x64'
|
||
|
]])
|
||
13 years ago
|
get_filename_component(path "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||
|
include(${path}/release_cmake.cmake)
|