diff options
author | Thomas Dickerson <elfprince13@gmail.com> | 2021-11-04 14:59:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-11-04 18:01:09 (GMT) |
commit | 58c8d649e178ad775012dfdf75a5118cbd2de23a (patch) | |
tree | f6449cf0014d94c29145862ab21d8335b1b1bd2f /Modules/CheckLinkerFlag.cmake | |
parent | fda948846b200336395c0e99be3fa2a0258d7f0a (diff) | |
download | CMake-58c8d649e178ad775012dfdf75a5118cbd2de23a.zip CMake-58c8d649e178ad775012dfdf75a5118cbd2de23a.tar.gz CMake-58c8d649e178ad775012dfdf75a5118cbd2de23a.tar.bz2 |
CheckLinkerFlag: Set policies needed by the implementation
The module was added in CMake 3.18 by commit af96c0f4fa
(CheckLinkerFlag: Add module to check validity of linker flags,
2020-05-16, v3.18.0-rc1~103^2), but it is still possible for projects to
use it without setting policies to the 3.18 version level.
Diffstat (limited to 'Modules/CheckLinkerFlag.cmake')
-rw-r--r-- | Modules/CheckLinkerFlag.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/CheckLinkerFlag.cmake b/Modules/CheckLinkerFlag.cmake index 28ac2e3..e85e43e 100644 --- a/Modules/CheckLinkerFlag.cmake +++ b/Modules/CheckLinkerFlag.cmake @@ -41,6 +41,10 @@ include_guard(GLOBAL) include(CMakeCheckCompilerFlagCommonPatterns) +cmake_policy(PUSH) +cmake_policy(SET CMP0054 NEW) # if() quoted variables not dereferenced +cmake_policy(SET CMP0057 NEW) # if() supports IN_LIST + function(CHECK_LINKER_FLAG _lang _flag _var) get_property (_supported_languages GLOBAL PROPERTY ENABLED_LANGUAGES) if (NOT _lang IN_LIST _supported_languages) @@ -82,3 +86,5 @@ function(CHECK_LINKER_FLAG _lang _flag _var) endforeach() set(${_var} "${${_var}}" PARENT_SCOPE) endfunction() + +cmake_policy(POP) |