blob: 0a5712142b3e087380930b16db6edbbd431f61a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
include(RunCMake)
if(RunCMake_GENERATOR STREQUAL Xcode)
if(XCODE_BELOW_6_1)
run_cmake(XcodeTooOld)
else()
run_cmake(Enable)
endif()
else()
run_cmake(NotSupported)
endif()
|