mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-26 08:29:54 -06:00
This commit adds a new CMake policy, CMP0080, which prohibits the inclusion of BundleUtilities at configure time. The old behavior is to allow the inclusion.
6 lines
105 B
CMake
6 lines
105 B
CMake
if(DEFINED CMP0080_VALUE)
|
|
cmake_policy(SET CMP0080 ${CMP0080_VALUE})
|
|
endif()
|
|
|
|
include(BundleUtilities)
|