mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
24 lines
554 B
CMake
24 lines
554 B
CMake
project(fileviewsvnplugin)
|
|
|
|
set(fileviewsvnplugin_SRCS fileviewsvnplugin.cpp)
|
|
|
|
kde4_add_kcfg_files(fileviewsvnplugin_SRCS fileviewsvnpluginsettings.kcfgc)
|
|
|
|
kde4_add_plugin(fileviewsvnplugin ${fileviewsvnplugin_SRCS})
|
|
|
|
target_link_libraries(fileviewsvnplugin ${KDE4_KIO_LIBS} konq)
|
|
|
|
install(
|
|
FILES fileviewsvnplugin.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES fileviewsvnpluginsettings.kcfg
|
|
DESTINATION ${KDE4_KCFG_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
TARGETS fileviewsvnplugin
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|