forked from Qortal/Brooklyn
26 lines
753 B
CMake
26 lines
753 B
CMake
|
add_definitions(-DTRANSLATION_DOMAIN=\"attica_kde_plugin\")
|
||
|
|
||
|
ecm_qt_declare_logging_category(SRCS
|
||
|
HEADER "attica_plugin_debug.h"
|
||
|
IDENTIFIER "ATTICA_PLUGIN_LOG"
|
||
|
CATEGORY_NAME "log_attica_plugin"
|
||
|
)
|
||
|
|
||
|
add_library(attica_kde MODULE kdeplatformdependent.cpp ${SRCS})
|
||
|
target_include_directories(attica_kde PRIVATE "${ACCOUNTSQT_INCLUDE_DIRS}")
|
||
|
target_link_libraries(attica_kde
|
||
|
PUBLIC
|
||
|
Qt::Widgets
|
||
|
KF5::KIOWidgets
|
||
|
KF5::KCMUtils
|
||
|
KF5::Attica
|
||
|
KF5::I18n
|
||
|
KF5::Service
|
||
|
KAccounts
|
||
|
${ACCOUNTSQT_LIBRARIES}
|
||
|
)
|
||
|
|
||
|
install(TARGETS attica_kde DESTINATION ${KDE_INSTALL_PLUGINDIR})
|
||
|
kaccounts_add_provider(opendesktop.provider.in)
|
||
|
kaccounts_add_service(opendesktop-rating.service.in)
|