summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/XcodeProject/XcodePlatformFrameworks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/XcodeProject/XcodePlatformFrameworks.cmake')
-rw-r--r--Tests/RunCMake/XcodeProject/XcodePlatformFrameworks.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/RunCMake/XcodeProject/XcodePlatformFrameworks.cmake b/Tests/RunCMake/XcodeProject/XcodePlatformFrameworks.cmake
new file mode 100644
index 0000000..74dc978
--- /dev/null
+++ b/Tests/RunCMake/XcodeProject/XcodePlatformFrameworks.cmake
@@ -0,0 +1,6 @@
+enable_language(C)
+
+find_library(XCTEST_LIBRARY XCTest)
+if(NOT XCTEST_LIBRARY)
+ message(FATAL_ERROR "XCTest Framework not found.")
+endif()