diff options
author | Peter Powell <petpow@saberuk.com> | 2015-12-15 01:10:08 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2015-12-31 02:51:59 +0000 |
commit | 6a0975370a74795ce3e0671849b98201d17228c0 (patch) | |
tree | 69e610252d0400ef902afdd311bed12ab9dc2e98 /CMakeLists.txt | |
parent | 9399a63b6617175a8e4a667f1a87ab2492feab59 (diff) |
Change the version requirement for CMake from 2.8 to 3.0.
There is already code in the build system using 3.0 stuff.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7313e212f..2b7f59d79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -# This usage of CMake requires at least version 2.8 -cmake_minimum_required(VERSION 2.8 FATAL_ERROR) +# This usage of CMake requires at least version 3.0 +cmake_minimum_required(VERSION 3.0 FATAL_ERROR) cmake_policy(SET CMP0003 NEW) if(POLICY CMP0026) |