mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Add the option to keep the current filestamps when extracting an archive in ExternalProject_Add. Enabling this option makes the behavior consistent with how ExternalProject_Add is used when checking out code from revision control instead of an archive. Fixes: #22746
8 lines
271 B
CMake
8 lines
271 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()
|
|
cmake_policy(SET CMP0135 NEW)
|
|
include(${RunCMake_TEST}.cmake)
|