mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-15 11:45:54 +00:00
18 lines
373 B
CMake
18 lines
373 B
CMake
|
add_definitions(-DTRANSLATION_DOMAIN=\"plasma_runner_shell\")
|
||
|
|
||
|
kcoreaddons_add_plugin(krunner_shell SOURCES shellrunner.cpp INSTALL_NAMESPACE "kf5/krunner")
|
||
|
target_link_libraries(krunner_shell
|
||
|
KF5::KIOCore
|
||
|
KF5::KIOGui
|
||
|
KF5::I18n
|
||
|
KF5::Notifications
|
||
|
KF5::Plasma
|
||
|
KF5::Runner
|
||
|
KF5::Completion
|
||
|
)
|
||
|
|
||
|
if(BUILD_TESTING)
|
||
|
add_subdirectory(autotests)
|
||
|
endif()
|
||
|
|