mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-30 11:08:51 -06:00
Xcode 1.5 does not support multiple configurations. The generator also adds some sources internally that cause extra OriginDebug output. Update the expected output to tolerate it.
11 lines
221 B
CMake
11 lines
221 B
CMake
include(RunCMake)
|
|
|
|
if(RunCMake_GENERATOR MATCHES "Visual Studio|Xcode" AND NOT XCODE_BELOW_2)
|
|
run_cmake(ConfigNotAllowed)
|
|
run_cmake(OriginDebugIDE)
|
|
else()
|
|
run_cmake(OriginDebug)
|
|
endif()
|
|
|
|
run_cmake(CMP0026-LOCATION)
|