cmake/Tests/RunCMake/Swift/RunCMakeTest.cmake
2019-11-11 23:01:05 +01:00

14 lines
277 B
CMake

include(RunCMake)
if(RunCMake_GENERATOR STREQUAL Xcode)
if(XCODE_BELOW_6_1)
run_cmake(XcodeTooOld)
endif()
elseif(RunCMake_GENERATOR STREQUAL Ninja)
if(CMAKE_Swift_COMPILER)
run_cmake(Win32ExecutableDisallowed)
endif()
else()
run_cmake(NotSupported)
endif()