mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 02:42:52 +00:00
20 lines
509 B
CMake
20 lines
509 B
CMake
|
|
set(BUILD_KONSOLE true)
|
|
if(BUILD_KONSOLE)
|
|
set(konsoleplugin_SRCS
|
|
konsoleviewfactory.cpp
|
|
konsoleview.cpp
|
|
)
|
|
|
|
kde4_add_plugin(krdc_konsoleplugin ${konsoleplugin_SRCS})
|
|
|
|
target_link_libraries(krdc_konsoleplugin
|
|
KDE4::kdecore
|
|
KDE4::kdeui
|
|
KDE4::kparts
|
|
krdccore
|
|
)
|
|
install(TARGETS krdc_konsoleplugin DESTINATION ${KDE4_PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES krdc_konsole.desktop DESTINATION ${KDE4_SERVICES_INSTALL_DIR})
|
|
endif(BUILD_KONSOLE)
|