fix CMake policy setup

This commit is contained in:
arcan1s 2015-08-02 14:24:49 +03:00
parent 5f7c35a37c
commit 6fbe897b27

View File

@ -5,7 +5,9 @@ cmake_policy(SET CMP0003 OLD)
cmake_policy(SET CMP0002 OLD)
cmake_policy(SET CMP0011 NEW)
cmake_policy(SET CMP0015 NEW)
cmake_policy(SET CMP0063 OLD)
if (POLICY CMP0063)
cmake_policy(SET CMP0063 OLD)
endif()
project(awesomewidgets)
set(PROJECT_AUTHOR "Evgeniy Alekseev")