diff options
author | Alex Merry <alex.merry@kde.org> | 2014-03-07 00:20:24 +0000 |
---|---|---|
committer | Alex Merry <alex.merry@kde.org> | 2014-03-07 00:20:24 +0000 |
commit | 72783b5acac8756c90221318e7b24bebf4e95521 (patch) | |
tree | f7e84e00e03eb1b49895c969c8304eeaf78af574 | |
parent | 8c3773f920185fe49d913f71fb58d19936a8d868 (diff) | |
download | extra-cmake-modules-72783b5acac8756c90221318e7b24bebf4e95521.tar.gz extra-cmake-modules-72783b5acac8756c90221318e7b24bebf4e95521.tar.bz2 |
Make the required CMake version in the ExecuteAllModules test 2.8.12
This matches what is in the main CMakeLists.txt file, and silences some
warnings in the test logs.
-rw-r--r-- | tests/ExecuteAllModules/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ExecuteAllModules/CMakeLists.txt b/tests/ExecuteAllModules/CMakeLists.txt index be3ee67f..12e86c15 100644 --- a/tests/ExecuteAllModules/CMakeLists.txt +++ b/tests/ExecuteAllModules/CMakeLists.txt @@ -7,7 +7,7 @@ # I guess more things could be added, like checking whether variables are # defined after running the modules (e.g. FOO_FOUND etc.). project(ExecuteAllModules) -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) file(GLOB all_find_modules "${CMAKE_CURRENT_SOURCE_DIR}/../../find-modules/Find*cmake") file(GLOB all_other_modules "${CMAKE_CURRENT_SOURCE_DIR}/../../modules/*cmake") |