mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-29 18:51:05 -05:00
62e73a7d10
Now that we have policies that need to be tested, this test cannot just use CMAKE_VERSION for the policy level.
7 lines
241 B
CMake
7 lines
241 B
CMake
cmake_minimum_required(VERSION 3.18)
|
|
project(${RunCMake_TEST} NONE)
|
|
if(CMAKE_XCODE_BUILD_SYSTEM VERSION_GREATER_EQUAL 12 AND NOT RunCMake_TEST STREQUAL "Xcode-CMP0114")
|
|
cmake_policy(SET CMP0114 NEW)
|
|
endif()
|
|
include(${RunCMake_TEST}.cmake)
|