diff options
author | Alex Neundorf <neundorf@kde.org> | 2012-05-12 21:25:36 +0200 |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2012-05-12 21:28:58 +0200 |
commit | 653895414dca71dde86dd78f493b5b646bb36ab7 (patch) | |
tree | d98c7c6dd574ff78986f060f41785d8c4ffb73f2 /modules/ECMConfig.cmake.in | |
parent | 0f46b993438abce7a2b90c7ba720427cbe827e8d (diff) | |
download | extra-cmake-modules-653895414dca71dde86dd78f493b5b646bb36ab7.tar.gz extra-cmake-modules-653895414dca71dde86dd78f493b5b646bb36ab7.tar.bz2 |
rework of extra-cmake-modules
-rename the cmake package from extra-cmake-modules to ECM
-change variable names and docs accordingly
-move setting of Qt-related defines from ECMQtFrameworks.cmake to KDECompilerSettings.cmake
-remove ECMSetVersionVariables.cmake, we'll do it some other way
-rename ECMConfig.cmake.in to ECMQtFrameworkConfig.cmake.in, since this is where it is used, and it would have the same name as ECMConfig.cmake.in which is for extra-cmake-modules itself
Alex
Diffstat (limited to 'modules/ECMConfig.cmake.in')
-rw-r--r-- | modules/ECMConfig.cmake.in | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/ECMConfig.cmake.in b/modules/ECMConfig.cmake.in deleted file mode 100644 index 114ce50e..00000000 --- a/modules/ECMConfig.cmake.in +++ /dev/null @@ -1,18 +0,0 @@ -# Any changes in this file will be overwritten by CMake. - -get_filename_component(myDir ${CMAKE_CURRENT_LIST_FILE} PATH) # get the directory where I myself am -get_filename_component(rootDir ${myDir}/@relInstallDir@ ABSOLUTE) # get the chosen install prefix - -set(@PROJECT_NAME@_VERSION_MAJOR "@ECM_VERSION_MAJOR@") -set(@PROJECT_NAME@_VERSION_MINOR "@ECM_VERSION_MINOR@") -set(@PROJECT_NAME@_VERSION_PATCH "@ECM_VERSION_PATCH@") - -set(@PROJECT_NAME@_INSTALL_PREFIX "${rootDir}") -set(@PROJECT_NAME@_INCLUDE_DIR "${rootDir}/@INCLUDE_INSTALL_DIR@") -set(@PROJECT_NAME@_LIBRARY_DIR "${rootDir}/@LIB_INSTALL_DIR@") - -set(@PROJECT_NAME@_LIBRARY @PROJECT_NAME@) - -set(@PROJECT_NAME@_USE_FILE "${myDir}/@PROJECT_NAME@Use.cmake") - -#include(${myDir}/@PROJECT_NAME@Targets.cmake) |