diff options
author | Allen Winter <winter@kde.org> | 2010-02-15 19:30:56 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2010-02-15 19:30:56 +0000 |
commit | e0686ebcf991fda497f42c9287a4c2d3008d3421 (patch) | |
tree | 3d323eec326f4cd5f2b652ee101e0d5c00125977 | |
parent | b19fc3b23ead0cfb55b3e46f36d31e2427b19e39 (diff) | |
download | extra-cmake-modules-e0686ebcf991fda497f42c9287a4c2d3008d3421.tar.gz extra-cmake-modules-e0686ebcf991fda497f42c9287a4c2d3008d3421.tar.bz2 |
4.4 => 4.5
beware! this changes the so versioning
svn path=/trunk/KDE/kdelibs/; revision=1090682
-rw-r--r-- | modules/FindKDE4Internal.cmake | 4 | ||||
-rw-r--r-- | modules/KDE4Defaults.cmake | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index 94bb3775..4b95a8bd 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -1233,13 +1233,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.4 include dir: ${KDE4_INCLUDE_DIR}") + message(STATUS "Found KDE 4.5 include dir: ${KDE4_INCLUDE_DIR}") else(KDE4_INCLUDE_DIR) message(STATUS "ERROR: unable to find the KDE 4 headers") endif(KDE4_INCLUDE_DIR) if(KDE4_LIB_DIR) - message(STATUS "Found KDE 4.4 library dir: ${KDE4_LIB_DIR}") + message(STATUS "Found KDE 4.5 library dir: ${KDE4_LIB_DIR}") else(KDE4_LIB_DIR) message(STATUS "ERROR: unable to find the KDE 4 core library") endif(KDE4_LIB_DIR) diff --git a/modules/KDE4Defaults.cmake b/modules/KDE4Defaults.cmake index 82fa6044..04c0ae2c 100644 --- a/modules/KDE4Defaults.cmake +++ b/modules/KDE4Defaults.cmake @@ -25,11 +25,11 @@ set(CMAKE_COLOR_MAKEFILE ON) # define the generic version of the libraries here # this makes it easy to advance it when the next KDE release comes # Use this version number for libraries which are at version n in KDE version n -set(GENERIC_LIB_VERSION "4.4.0") +set(GENERIC_LIB_VERSION "4.5.0") set(GENERIC_LIB_SOVERSION "4") # Use this version number for libraries which are already at version n+1 in KDE version n -set(KDE_NON_GENERIC_LIB_VERSION "5.4.0") +set(KDE_NON_GENERIC_LIB_VERSION "5.5.0") set(KDE_NON_GENERIC_LIB_SOVERSION "5") # windows does not support LD_LIBRARY_PATH or similar |