Browse Source

Dont check for -isysroot and -mmacosx-version on OSX in --find-package mode

Alex
Alex Neundorf 14 years ago
parent
commit
e552ae7cfd
1 changed files with 6 additions and 0 deletions
  1. 6 0
      Modules/CMakeFindPackageMode.cmake

+ 6 - 0
Modules/CMakeFindPackageMode.cmake

@@ -40,6 +40,12 @@ endif()
 
 include(CMakeDetermineSystem)
 
+# short-cut some tests on Darwin, see Darwin-GNU.cmake:
+if("${CMAKE_SYSTEM_NAME}" MATCHES Darwin  AND  "${COMPILER_ID}" MATCHES GNU)
+  set(${CMAKE_${LANGUAGE}_HAS_ISYSROOT} 0 )
+  set(CMAKE_${lang}_OSX_DEPLOYMENT_TARGET_FLAG "")
+endif()
+
 # Also load the system specific file, which sets up e.g. the search paths.
 # This makes the FIND_XXX() calls work much better
 include(CMakeSystemSpecificInformation)