mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
91 lines
2.4 KiB
CMake
91 lines
2.4 KiB
CMake
|
|
include_directories(
|
|
${PROJECT_BINARY_DIR}/interfaces
|
|
${PROJECT_SOURCE_DIR}/interfaces
|
|
)
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_akrgeneralconfig_SRCS
|
|
akregator_config_general.cpp
|
|
settings_general.ui
|
|
)
|
|
|
|
kde4_add_plugin(akregator_config_general ${kcm_akrgeneralconfig_SRCS})
|
|
|
|
target_link_libraries(akregator_config_general
|
|
akregatorinterfaces
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(FILES akregator_config_general.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
install(TARGETS akregator_config_general DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_akrappearanceconfig_SRCS
|
|
akregator_config_appearance.cpp
|
|
settings_appearance.ui
|
|
)
|
|
|
|
kde4_add_plugin(akregator_config_appearance ${kcm_akrappearanceconfig_SRCS})
|
|
|
|
target_link_libraries(akregator_config_appearance
|
|
akregatorinterfaces
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(FILES akregator_config_appearance.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
install(TARGETS akregator_config_appearance DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_akrarchiveconfig_SRCS
|
|
akregator_config_archive.cpp
|
|
settings_archive.ui
|
|
)
|
|
|
|
kde4_add_plugin(akregator_config_archive ${kcm_akrarchiveconfig_SRCS})
|
|
|
|
target_link_libraries(akregator_config_archive
|
|
akregatorinterfaces
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(FILES akregator_config_archive.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
install(TARGETS akregator_config_archive DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_akrbrowserconfig_SRCS
|
|
akregator_config_browser.cpp
|
|
settings_browser.ui
|
|
)
|
|
|
|
kde4_add_plugin(akregator_config_browser ${kcm_akrbrowserconfig_SRCS})
|
|
|
|
target_link_libraries(akregator_config_browser
|
|
akregatorinterfaces
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(FILES akregator_config_browser.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
install(TARGETS akregator_config_browser DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
########### next target ###############
|
|
|
|
set(kcm_akradvancedconfig_SRCS
|
|
akregator_config_advanced.cpp
|
|
settings_advanced.cpp
|
|
settings_advancedbase.ui
|
|
)
|
|
|
|
kde4_add_plugin(akregator_config_advanced ${kcm_akradvancedconfig_SRCS})
|
|
|
|
target_link_libraries(akregator_config_advanced
|
|
akregatorinterfaces
|
|
${KDE4_KIO_LIBS}
|
|
)
|
|
|
|
install(FILES akregator_config_advanced.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
install(TARGETS akregator_config_advanced DESTINATION ${PLUGIN_INSTALL_DIR})
|