mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
27 lines
565 B
Text
27 lines
565 B
Text
![]() |
|
||
|
if(NOT NDEBUG)
|
||
|
set(BUILD_TEST true)
|
||
|
endif(NOT NDEBUG)
|
||
|
if(BUILD_TEST)
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
)
|
||
|
|
||
|
set(testplugin_SRCS
|
||
|
testviewfactory.cpp
|
||
|
testview.cpp
|
||
|
)
|
||
|
|
||
|
kde4_add_plugin(krdc_testplugin ${testplugin_SRCS})
|
||
|
|
||
|
target_link_libraries(krdc_testplugin
|
||
|
${KDE4_KDECORE_LIBS}
|
||
|
${KDE4_KDEUI_LIBS}
|
||
|
krdccore
|
||
|
)
|
||
|
install(TARGETS krdc_testplugin DESTINATION ${PLUGIN_INSTALL_DIR})
|
||
|
|
||
|
install(FILES krdc_test.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
||
|
endif(BUILD_TEST)
|