Ver código fonte

Merge pull request #480 from kurylo/fix/2016-09-29-cmake-warning

Fix cmake warnings on new cmake versions.
Lee Thomason 9 anos atrás
pai
commit
f00c179eba
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      CMakeLists.txt

+ 3 - 0
CMakeLists.txt

@@ -7,6 +7,9 @@ IF(BIICODE)
 ENDIF(BIICODE)
 cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
 cmake_policy(VERSION 2.6)
+if(POLICY CMP0063)
+	cmake_policy(SET CMP0063 OLD)
+endif()
 
 project(tinyxml2)
 include(GNUInstallDirs)