aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <winter@kde.org>2008-01-15 14:25:29 +0000
committerAllen Winter <winter@kde.org>2008-01-15 14:25:29 +0000
commitcaaa202461158f4ec396da790628a01a2d7d1c56 (patch)
tree4ea857d81147981f8047dc068ffc5979aa4a44d3
parent76e484e69e95cdd0550304a714c0e2ff83cb2858 (diff)
downloadextra-cmake-modules-caaa202461158f4ec396da790628a01a2d7d1c56.tar.gz
extra-cmake-modules-caaa202461158f4ec396da790628a01a2d7d1c56.tar.bz2
say "4.1" when finding the internal include or lib.
mueller@kde.org svn path=/trunk/KDE/kdelibs/; revision=761874
-rw-r--r--modules/FindKDE4Internal.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake
index e9f9ac43..7b71836b 100644
--- a/modules/FindKDE4Internal.cmake
+++ b/modules/FindKDE4Internal.cmake
@@ -983,13 +983,13 @@ macro (KDE4_PRINT_RESULTS)
# inside kdelibs the include dir and lib dir are internal, not "found"
if (NOT _kdeBootStrapping)
if(KDE4_INCLUDE_DIR)
- message(STATUS "Found KDE 4 include dir: ${KDE4_INCLUDE_DIR}")
+ message(STATUS "Found KDE 4.1 include dir: ${KDE4_INCLUDE_DIR}")
else(KDE4_INCLUDE_DIR)
message(STATUS "ERROR: unable to find KDE 4 headers")
endif(KDE4_INCLUDE_DIR)
if(KDE4_LIB_DIR)
- message(STATUS "Found KDE 4 library dir: ${KDE4_LIB_DIR}")
+ message(STATUS "Found KDE 4.1 library dir: ${KDE4_LIB_DIR}")
else(KDE4_LIB_DIR)
message(STATUS "ERROR: unable to find KDE 4 core library")
endif(KDE4_LIB_DIR)