22 lines
361 B
CMake
22 lines
361 B
CMake
set(exampleplasmashell-app_SRCS
|
|
customcorona.cpp
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(exampleplasmashell ${exampleplasmashell-app_SRCS})
|
|
|
|
target_link_libraries(
|
|
exampleplasmashell
|
|
Qt5::Widgets
|
|
Qt5::Quick
|
|
Qt5::Qml
|
|
KF5::I18n
|
|
KF5::XmlGui
|
|
KF5::PlasmaQuick
|
|
KF5::Plasma
|
|
KF5::DBusAddons
|
|
KF5::Notifications
|
|
KF5::QuickAddons
|
|
)
|
|
|