Enable CMP0074 policy to suppress CMake warning.

This commit is contained in:
levlam 2021-09-01 19:09:50 +03:00
parent b1db807868
commit 8e41fd1aab
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,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()