summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-11-17 16:06:35 +0100
committerSlávek Banko <slavek.banko@axis.cz>2012-11-17 16:06:51 +0100
commit96f0726b226f4b404c38f998fbdd02cf728ba6e8 (patch)
tree4984d79f9a7fd23d6cb7fe67c4f4d97937cd2a0e /lib
parent5bca232c7d53e3bc28dae36b0ccc9dbcbbf01fba (diff)
downloadtdevelop-96f0726b226f4b404c38f998fbdd02cf728ba6e8.tar.gz
tdevelop-96f0726b226f4b404c38f998fbdd02cf728ba6e8.zip
Fix various cmake build issues
Diffstat (limited to 'lib')
-rw-r--r--lib/interfaces/external/CMakeLists.txt7
-rw-r--r--lib/util/CMakeLists.txt2
2 files changed, 6 insertions, 3 deletions
diff --git a/lib/interfaces/external/CMakeLists.txt b/lib/interfaces/external/CMakeLists.txt
index 1a12815c..cee645d0 100644
--- a/lib/interfaces/external/CMakeLists.txt
+++ b/lib/interfaces/external/CMakeLists.txt
@@ -23,8 +23,11 @@ install( FILES
DESTINATION ${INCLUDE_INSTALL_DIR}/kinterfacedesigner )
-##### kinterfacedesigner (static) ###############
+##### kinterfacedesigner (shared) ###############
-tde_add_library( kinterfacedesigner STATIC_PIC AUTOMOC
+tde_add_library( kinterfacedesigner SHARED AUTOMOC
SOURCES designer.cpp
+ LINK kparts-shared tdeui-shared
+ VERSION 0.0.0
+ DESTINATION ${LIB_INSTALL_DIR}
)
diff --git a/lib/util/CMakeLists.txt b/lib/util/CMakeLists.txt
index f075a840..378c4dca 100644
--- a/lib/util/CMakeLists.txt
+++ b/lib/util/CMakeLists.txt
@@ -23,7 +23,7 @@ include_directories(
install( FILES
domutil.h execcommand.h filetemplate.h urlutil.h
configwidgetproxy.h rurl.h kscriptactionmanager.h
- DESTINATION ${INCLUDE_INSTALL_DIR} )
+ DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/util )
##### kdevutil (static) #########################