diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-04-30 20:05:42 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-04-30 20:05:42 (GMT) |
commit | 22a2abb154289dae8321c0576ebf134ca4557a71 (patch) | |
tree | 879ff164955f697f5bb03eca3184d25e81abd3d9 | |
parent | 6e2cd411383aa9a84b9a6f3d9db5e9ffc3d057c0 (diff) | |
download | CMake-22a2abb154289dae8321c0576ebf134ca4557a71.zip CMake-22a2abb154289dae8321c0576ebf134ca4557a71.tar.gz CMake-22a2abb154289dae8321c0576ebf134ca4557a71.tar.bz2 |
BUG: also install CMakePlatformId.h, otherwise the check for the compiler id
works only when building cmake itself, but not with an installed cmake
Alex
-rw-r--r-- | Modules/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/CMakeLists.txt b/Modules/CMakeLists.txt index 55e2936..5e6779b 100644 --- a/Modules/CMakeLists.txt +++ b/Modules/CMakeLists.txt @@ -4,4 +4,5 @@ INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.cmake$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.cxx$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.in$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.c$) +INSTALL_FILES(${CMAKE_DATA_DIR}/Modules .*\\.h$) INSTALL_FILES(${CMAKE_DATA_DIR}/Modules readme\\.txt$) |