diff options
author | Alex Neundorf <neundorf@kde.org> | 2013-06-28 23:24:29 +0200 |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2013-06-28 23:24:29 +0200 |
commit | 597b04af8d5209b25002a676f541ea91aaa0f0e3 (patch) | |
tree | 1c613b20958db7494b2ffb0d867c521ec63a9387 /CMakeLists.txt | |
parent | cc628694c9e55ffb38fad6e8bfc071fa4e09609b (diff) | |
download | extra-cmake-modules-597b04af8d5209b25002a676f541ea91aaa0f0e3.tar.gz extra-cmake-modules-597b04af8d5209b25002a676f541ea91aaa0f0e3.tar.bz2 |
-require cmake 2.8.11
-increase version to 0.0.9
-install to a non-versioned directory
Alex
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 611a78a9..5a22f85c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,17 +1,17 @@ -cmake_minimum_required(VERSION 2.8.10.20130411 FATAL_ERROR) +cmake_minimum_required(VERSION 2.8.11 FATAL_ERROR) project(extra-cmake-modules) set(ECM_MAJOR_VERSION 0) set(ECM_MINOR_VERSION 0) -set(ECM_PATCH_VERSION 8) +set(ECM_PATCH_VERSION 9) set(ECM_VERSION ${ECM_MAJOR_VERSION}.${ECM_MINOR_VERSION}.${ECM_PATCH_VERSION}) enable_testing() add_subdirectory(tests) -set(SHARE_INSTALL_DIR share/ECM-${ECM_VERSION}) +set(SHARE_INSTALL_DIR share/ECM ) set(MODULES_INSTALL_DIR ${SHARE_INSTALL_DIR}/modules/) set(KDE_MODULES_INSTALL_DIR ${SHARE_INSTALL_DIR}/kde-modules/) set(FIND_MODULES_INSTALL_DIR ${SHARE_INSTALL_DIR}/find-modules/) |