3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 02:05:54 +00:00
2022-03-05 22:41:29 +05:00

17 lines
356 B
CMake

add_definitions(-DTRANSLATION_DOMAIN=\"plasma_engine_dict\")
set(dict_engine_SRCS
dictengine.cpp
)
add_library(plasma_engine_dict MODULE ${dict_engine_SRCS})
target_link_libraries (plasma_engine_dict
KF5::Plasma
KF5::Service
KF5::I18n
Qt::Network
)
install(TARGETS plasma_engine_dict DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/dataengine)