mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-14 11:09:56 -06:00
This compatibility has been deprecated since commit 5845c218d7
(Deprecate compatibility with CMake versions older than 2.8.12,
2020-06-12, v3.19.0-rc1~629^2). The behavior itself has been
deprecated since CMake 2.8.0.
Issue: #26613
6 lines
176 B
CMake
6 lines
176 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
cmake_policy(PUSH)
|
|
cmake_policy(VERSION 2.6) # simulate pre-3.18 install(EXPORT)-generated call
|
|
cmake_policy(POP)
|
|
cmake_policy(VERSION 3.9)
|