diff options
author | jeffro256 <jeffro256@tutanota.com> | 2024-01-18 21:22:03 -0600 |
---|---|---|
committer | jeffro256 <jeffro256@tutanota.com> | 2024-01-19 11:14:58 -0600 |
commit | e7629dc46fc9fba3227835701b4e169edc07223f (patch) | |
tree | af63f1bb251e982cb05bc2ae1c09de172b68616f | |
parent | Merge pull request #9119 (diff) | |
download | monero-e7629dc46fc9fba3227835701b4e169edc07223f.tar.xz |
CMake: only set policy CMP0148 to OLD if version >= 3.27
Co-authored-by: 0xFFFC0000 <0xFFFC0000@proton.me>
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c35a225a..83d760c66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,8 +40,9 @@ include(CheckCXXCompilerFlag) include(CheckLinkerFlag) include(CheckLibraryExists) include(CheckFunctionExists) - -cmake_policy(SET CMP0148 OLD) +if (POLICY CMP0148) + cmake_policy(SET CMP0148 OLD) # https://cmake.org/cmake/help/latest/policy/CMP0148.html +endif() include(FindPythonInterp) if (IOS) |