mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 14:33:08 +00:00
24 lines
478 B
CMake
24 lines
478 B
CMake
|
|
|
|
set(plasmaphonedialer_SRCS
|
|
main.cpp
|
|
dialerutils.cpp
|
|
)
|
|
|
|
add_executable(plasmaphonedialer ${plasmaphonedialer_SRCS})
|
|
target_compile_definitions(plasmaphonedialer PRIVATE -DPROJECT_VERSION="${PROJECT_VERSION}")
|
|
|
|
#find_package(ActiveApp REQUIRED)
|
|
|
|
target_link_libraries(plasmaphonedialer
|
|
Qt5::Gui
|
|
Qt5::Quick
|
|
Qt5::Widgets
|
|
KF5::Declarative
|
|
KF5::I18n
|
|
KF5::Package
|
|
KF5::QuickAddons
|
|
KF5::DBusAddons
|
|
)
|
|
|
|
install(TARGETS plasmaphonedialer ${INSTALL_TARGETS_DEFAULT_ARGS})
|