aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <winter@kde.org>2007-04-09 05:37:21 +0000
committerAllen Winter <winter@kde.org>2007-04-09 05:37:21 +0000
commitd326c2504813b90df3881b00eef081f4fc9ef49a (patch)
treed2cb0d77b31c3e93d2112eafb20eb7e4ea39b565
parent8db515aefb36667de829838150de61bded53cc1e (diff)
downloadextra-cmake-modules-d326c2504813b90df3881b00eef081f4fc9ef49a.tar.gz
extra-cmake-modules-d326c2504813b90df3881b00eef081f4fc9ef49a.tar.bz2
use GENERIC_LIB_VERSION and GENERIC_LIB_SOVERSION and set these
values to 5.0.0 and 5, respectively. svn path=/trunk/KDE/kdelibs/; revision=651750
-rw-r--r--modules/KDE4Defaults.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/KDE4Defaults.cmake b/modules/KDE4Defaults.cmake
index fba1f766..d4279930 100644
--- a/modules/KDE4Defaults.cmake
+++ b/modules/KDE4Defaults.cmake
@@ -23,8 +23,8 @@ 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
-set(GENERIC_LIB_VERSION "4.0.0")
-set(GENERIC_LIB_SOVERSION "4")
+set(GENERIC_LIB_VERSION "5.0.0")
+set(GENERIC_LIB_SOVERSION "5")
# windows does not support LD_LIBRARY_PATH or similar
# all searchable directories has to be defined by the PATH environment var
@@ -35,4 +35,4 @@ set(GENERIC_LIB_SOVERSION "4")
if (WIN32)
set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
# set (LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
-endif(WIN32) \ No newline at end of file
+endif(WIN32)