From 25946a5c8ef28e97a5f8ca289efa1323edc285cd Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 1 Sep 2021 19:10:34 +0300 Subject: [PATCH] Enable CMP0074 policy to suppress CMake warning. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 245e6a8..a47fc77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,10 @@ if (POLICY CMP0060) # link libraries by full path cmake_policy(SET CMP0060 NEW) endif() +if (POLICY CMP0074) + # use environment variables to find libraries + cmake_policy(SET CMP0074 NEW) +endif() include(PreventInSourceBuild) prevent_in_source_build()