diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2019-05-11 10:12:32 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2019-05-11 10:12:32 (GMT) |
commit | e9d128b789f91c3f8d22e366500f58e6c7f6abc6 (patch) | |
tree | f3665a326b022086ac68c84ac15c894abf708707 /Tests/RunCMake/XcodeProject | |
parent | 6ced0b97d5fbcaf94f88a5f3062beeb0ad75f186 (diff) | |
download | CMake-e9d128b789f91c3f8d22e366500f58e6c7f6abc6.zip CMake-e9d128b789f91c3f8d22e366500f58e6c7f6abc6.tar.gz CMake-e9d128b789f91c3f8d22e366500f58e6c7f6abc6.tar.bz2 |
Apple: Properly lookup XCTest for iOS and tvOS
Closes: #19172
Diffstat (limited to 'Tests/RunCMake/XcodeProject')
-rw-r--r-- | Tests/RunCMake/XcodeProject/RunCMakeTest.cmake | 15 | ||||
-rw-r--r-- | Tests/RunCMake/XcodeProject/XCTestLookup.cmake | 3 |
2 files changed, 18 insertions, 0 deletions
diff --git a/Tests/RunCMake/XcodeProject/RunCMakeTest.cmake b/Tests/RunCMake/XcodeProject/RunCMakeTest.cmake index 4918f7c..191f56d 100644 --- a/Tests/RunCMake/XcodeProject/RunCMakeTest.cmake +++ b/Tests/RunCMake/XcodeProject/RunCMakeTest.cmake @@ -256,4 +256,19 @@ if(XCODE_VERSION VERSION_GREATER_EQUAL 8) deployment_target_test(watchOS watchsimulator) endif() +if(XCODE_VERSION VERSION_GREATER_EQUAL 8) + function(xctest_lookup_test SystemName SDK) + set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/XCTestLookup-${SDK}-build) + set(RunCMake_TEST_OPTIONS "-DCMAKE_SYSTEM_NAME=${SystemName}" "-DCMAKE_OSX_SYSROOT=${SDK}") + + run_cmake(XCTestLookup) + endfunction() + + xctest_lookup_test(Darwin macosx) + xctest_lookup_test(iOS iphoneos) + xctest_lookup_test(iOS iphonesimulator) + xctest_lookup_test(tvOS appletvos) + xctest_lookup_test(tvOS appletvsimulator) +endif() + # Please add macOS-only tests above before the device-specific tests. diff --git a/Tests/RunCMake/XcodeProject/XCTestLookup.cmake b/Tests/RunCMake/XcodeProject/XCTestLookup.cmake new file mode 100644 index 0000000..77676e5 --- /dev/null +++ b/Tests/RunCMake/XcodeProject/XCTestLookup.cmake @@ -0,0 +1,3 @@ +enable_language(C) + +find_package(XCTest REQUIRED) |