commit | f00c179ebad6be853a45f3fb1aef77bcfcd5ae11 | [log] [tgz] |
---|---|---|
author | Lee Thomason <leethomason@gmail.com> | Sun Oct 02 21:24:49 2016 -0700 |
committer | GitHub <noreply@github.com> | Sun Oct 02 21:24:49 2016 -0700 |
tree | 793ada2221aff1314900cf21dc5b59ffdfe4a8c2 | |
parent | 7fcf31b2c3ba076fbfa4e36fec7d33c63c88daba [diff] | |
parent | aad61870a95bdab54a297b8c383d381e4f5228d1 [diff] |
Merge pull request #480 from kurylo/fix/2016-09-29-cmake-warning Fix cmake warnings on new cmake versions.
diff --git a/CMakeLists.txt b/CMakeLists.txt index ec2e58f..e9b44d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -7,6 +7,9 @@ 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)