mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 04:10:05 -06:00
Forward `CMAKE_<LANG>_FLAGS` and `CMAKE_<LANG>_FLAGS_DEBUG` from the
calling project into the test project. The set of flags may affect the
availability of IPO support. Since this may change the result of the
check for existing projects, add a policy for compatibility.
This was discovered after commit 5fcadc481e (MSVC: Default to -ZI
instead of /Zi for x86 and x64, 2022-05-24) introduced policy CMP0138 to
switch our default for MSVC's debug info flag. The `-ZI` flag is
incompatible with the `-GL` flag used for IPO, so CMP0138 was reverted
pending future work on an alternative solution. Re-use the CMP0138
policy number for this change to CheckIPOSupported instead.
Fixes: #23607
25 lines
639 B
CMake
25 lines
639 B
CMake
include(RunCMake)
|
|
|
|
run_cmake(Inspect)
|
|
include("${RunCMake_BINARY_DIR}/Inspect-build/info.cmake")
|
|
|
|
run_cmake(unparsed-arguments)
|
|
run_cmake(user-lang-unknown)
|
|
run_cmake(default-lang-none)
|
|
run_cmake(not-supported-by-cmake)
|
|
run_cmake(not-supported-by-compiler)
|
|
run_cmake(save-to-result)
|
|
run_cmake(cmp0069-is-old)
|
|
|
|
if(_CMAKE_C_IPO_SUPPORTED_BY_CMAKE
|
|
AND _CMAKE_C_IPO_MAY_BE_SUPPORTED_BY_COMPILER
|
|
AND NOT RunCMake_GENERATOR MATCHES "^Visual Studio 9 ")
|
|
run_cmake(CMP0138-WARN)
|
|
run_cmake(CMP0138-OLD)
|
|
run_cmake(CMP0138-NEW)
|
|
endif()
|
|
|
|
if(RunCMake_GENERATOR MATCHES "^Visual Studio 9 ")
|
|
run_cmake(not-supported-by-generator)
|
|
endif()
|