summaryrefslogtreecommitdiffstats
path: root/plugins/strigi
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-25 15:56:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-25 15:56:27 -0600
commite1f0701a044549183106d857deaae291cc5950b0 (patch)
tree0f03a97cc9fdb7302df074de6b867e86a17d0fdf /plugins/strigi
parent5661d90024acd6f43dc38211891c7b48cd0709f2 (diff)
downloadkbfx-e1f0701a044549183106d857deaae291cc5950b0.tar.gz
kbfx-e1f0701a044549183106d857deaae291cc5950b0.zip
Update remaining plugins to new CMake system
Diffstat (limited to 'plugins/strigi')
-rw-r--r--plugins/strigi/CMakeLists.txt90
1 files changed, 44 insertions, 46 deletions
diff --git a/plugins/strigi/CMakeLists.txt b/plugins/strigi/CMakeLists.txt
index 061b425..9f40b46 100644
--- a/plugins/strigi/CMakeLists.txt
+++ b/plugins/strigi/CMakeLists.txt
@@ -1,46 +1,44 @@
-SET(libkbfxstrigiclientsrc
- kbfxstrigiplugin.cpp
- )
-
-FILE(GLOB HEADERS *.h)
-
-IF (NOT USE_KDE4)
- KDE3_AUTOMOC(${libkbfxstrigiclientsrc})
-
- ADD_LIBRARY(kbfxstrigiclient SHARED ${libkbfxstrigiclientsrc})
- SET_TARGET_PROPERTIES(kbfxstrigiclient
- PROPERTIES
- COMPILE_FLAGS ${CMAKE_SHARED_LIBRARY_CXX_FLAGS})
- # SET_TARGET_PROPERTIES(kbfxstrigiclient PROPERTIES
- # SOVERSION ${LIB_MAJOR}
- # VERSION ${APPLICATION_VERSION})
- TARGET_LINK_LIBRARIES(kbfxstrigiclient
- kbfxdata
- ${QT_AND_TDECORE_LIBS}
- ${KDE3_KIO_LIBRARY}
- ${KDE3_UI_LIBRARY}
- ${KDE3_KHTML_LIBRARY}
- ${M_LIBRARY}
- ${STRIGICLIENT_LIBRARY}
- )
-
- KDE3_INSTALL_LIBTOOL_FILE(kbfxstrigiclient ${LIB_INSTALL_DIR}/kbfx/plugins)
-ELSE (NOT USE_KDE4)
- KDE4_AUTOMOC(${libkbfxstrigiclientsrc})
-
- KDE4_ADD_LIBRARY(kbfxstrigiclient SHARED ${libkbfxstrigiclientsrc})
- TARGET_LINK_LIBRARIES(kbfxstrigiclient
- kbfxdata
- ${KDE4_TDECORE_LIBS}
- ${KDE4_KIO_LIBS}
- ${KDE4_TDEUI_LIBS}
- ${KDE4_KHTML_LIBS}
- ${M_LIBRARY}
- ${STRIGICLIENT_LIBRARY}
- )
-
- KDE4_INSTALL_LIBTOOL_FILE(kbfxstrigiclient ${LIB_INSTALL_DIR}/kbfx/plugins)
-ENDIF (NOT USE_KDE4)
-
-INSTALL(TARGETS kbfxstrigiclient DESTINATION ${LIB_INSTALL_DIR}/kbfx/plugins)
-INSTALL(FILES ${HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/kbfx/plugins)
+#################################################
+#
+# (C) 2011 Timothy Pearson
+# kb9vqf (AT) pearsoncomputing.net
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${TQT_INCLUDE_DIRS}
+ ${TDE_INCLUDE_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kbfxstrigiclient ##########################
+
+set( target kbfxstrigiclient )
+
+set( ${target}_SRCS
+ kbfxstrigiplugin.cpp
+)
+
+tde_add_library( ${target} SHARED AUTOMOC
+ SOURCES ${${target}_SRCS}
+# VERSION 4.2.0
+ LINK DCOP-shared tdecore-shared tdeui-shared kio-shared khtml-shared ${M_LIBRARY} ${STRIGICLIENT_LIBRARY} kbfxdata kbfxplasmadatasettings
+ DESTINATION ${LIB_INSTALL_DIR}/kbfx/plugins
+)
+
+
+##### headers #######################################
+
+file( GLOB HEADERS *.h )
+INSTALL(FILES ${HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/kbfx/plugins) \ No newline at end of file