From b93c21f5745ab73749927a9bb33278cb3a72c98e Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 19 Feb 2007 16:56:53 +0000 Subject: [PATCH] fix library versioning svn path=/trunk/KDE/kdebase/workspace/; revision=635264 --- lib/CMakeLists.txt | 32 +++----------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index bb2dcf5aa2..46ab879367 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -10,42 +10,16 @@ set(kdecorations_LIB_SRCS kdecorationfactory.cpp kcommondecoration.cpp ) -kde4_automoc(kdecorations ${kdecorations_LIB_SRCS}) +kde4_automoc(${kdecorations_LIB_SRCS}) kde4_add_library(kdecorations SHARED ${kdecorations_LIB_SRCS}) target_link_libraries(kdecorations ${KDE4_KDEUI_LIBS} ${QT_QTGUI_LIBRARY}) -set_target_properties(kdecorations PROPERTIES VERSION 1.0.0 SOVERSION 1 ) +set_target_properties(kdecorations PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} ) install(TARGETS kdecorations DESTINATION ${LIB_INSTALL_DIR} ) ########### install files ############### -install_files( /include FILES kdecoration.h kdecoration_p.h kdecoration_plugins_p.h kdecorationfactory.h kcommondecoration.h ) - - - - -#original Makefile.am contents follow: - -## FRAME libkwin??? -#lib_LTLIBRARIES = libkdecorations.la -# -#libkdecorations_la_SOURCES = kdecoration.cpp kdecoration_p.cpp kdecoration_plugins_p.cpp \ -# kdecorationfactory.cpp kcommondecoration.cpp -#libkdecorations_la_LIBADD = $(LIB_KDECORE) -#libkdecorations_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined -# -## FRAME -#include_HEADERS = kdecoration.h kdecoration_p.h kdecoration_plugins_p.h \ -# kdecorationfactory.h kcommondecoration.h -# -#INCLUDES = $(all_includes) -#METASOURCES = AUTO -# -#include ../../../admin/Doxyfile.am -# -#messages: rc.cpp -# $(XGETTEXT) `find . -name \*.cpp` -o $(podir)/kwin_lib.pot -# -rm rc.cpp +install( FILES kdecoration.h kdecoration_p.h kdecoration_plugins_p.h kdecorationfactory.h kcommondecoration.h DESTINATION ${INCLUDE_INSTALL_DIR})