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.
|
- INCLUDE(CMakeForceCompiler)
-
- SET (CMAKE_CROSSCOMPILING TRUE)
- SET (CMAKE_SYSTEM_NAME "Darwin")
- SET (CMAKE_SYSTEM_PROCESSOR "armv6")
-
- SET (SDKVER "7.1")
- SET (DEVROOT "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain")
- SET (SDKROOT "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS${SDKVER}.sdk")
- SET (CC "${DEVROOT}/usr/bin/clang")
- SET (CXX "${DEVROOT}/usr/bin/clang++")
-
- CMAKE_FORCE_C_COMPILER (${CC} LLVM)
- CMAKE_FORCE_CXX_COMPILER (${CXX} LLVM)
-
- SET (CMAKE_FIND_ROOT_PATH "${SDKROOT}" "${DEVROOT}")
- SET (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
- SET (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
- SET (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|