From 45f2e84a7de52f55fc1b41fefbc1b71a40d7a4eb Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Fri, 6 Mar 2015 00:04:14 +0100 Subject: [PATCH] cmake: @VAR@ substitutions in set() are deprecated, use string(CONFIGURE) instead (policy CMP0053) Bug: https://bugs.freedesktop.org/show_bug.cgi?id=89450 Reviewed-by: Simon McVittie --- cmake/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 6fbfb40df..309cdb2e8 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -15,6 +15,7 @@ endif(COMMAND cmake_policy) if(CMAKE_MAJOR_VERSION GREATER 2) cmake_policy(SET CMP0026 NEW) cmake_policy(SET CMP0053 NEW) + cmake_policy(SET CMP0054 NEW) endif() # detect version -- 2.47.3