mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
19 lines
407 B
CMake
19 lines
407 B
CMake
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
|
|
KDE4::kdeui
|
|
krdccore
|
|
)
|
|
install(TARGETS krdc_testplugin DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES krdc_test.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR})
|