summaryrefslogtreecommitdiffstats
path: root/plugins/strigi/CMakeLists.txt
blob: 061b425f8602d9444a28e8bfb2a23e9543d939a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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)