Commit 572d8d00 by Christian Kern

If the policy is not known, CMake throws an error. Fix.

parent 67fdc2b5
...@@ -45,8 +45,13 @@ set (EMBB_BASE_VERSION_PATCH 3) ...@@ -45,8 +45,13 @@ set (EMBB_BASE_VERSION_PATCH 3)
# See http://www.cmake.org/cmake/help/v3.1/policy/CMP0053.html # See http://www.cmake.org/cmake/help/v3.1/policy/CMP0053.html
# #
# Set those policies to be treated the legacy (CMake < 3.1) way. # Set those policies to be treated the legacy (CMake < 3.1) way.
cmake_policy(SET CMP0054 OLD) if(POLICY CMP0054)
cmake_policy(SET CMP0053 OLD) cmake_policy(SET CMP0054 OLD)
endif(POLICY CMP0054)
if(POLICY CMP0053)
cmake_policy(SET CMP0053 OLD)
endif(POLICY CMP0053)
if(NOT CMAKE_BUILD_TYPE) if(NOT CMAKE_BUILD_TYPE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment