3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-23 15:45:53 +00:00
2022-04-02 18:24:21 +05:00

19 lines
403 B
CMake

add_definitions(-DTRANSLATION_DOMAIN=\"plasma_runner_locations\")
set(krunner_locations_SRCS
locationrunner.cpp
)
kcoreaddons_add_plugin(locations SOURCES ${krunner_locations_SRCS} INSTALL_NAMESPACE "kf5/krunner")
target_link_libraries(locations
KF5::KIOCore
KF5::KIOWidgets
KF5::I18n
KF5::Runner
KF5::Notifications
)
if(BUILD_TESTING)
add_subdirectory(autotests)
endif()