mirror of https://github.com/cutefishos/core
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
505 B
CMake
24 lines
505 B
CMake
set(SRCS main.cpp
|
|
screenhelper.cpp
|
|
notificationsmodel.cpp
|
|
notificationserver.cpp
|
|
notification.cpp
|
|
resources.qrc
|
|
)
|
|
|
|
qt_add_dbus_adaptor(SRCS org.freedesktop.Notifications.xml notificationserver.h NotificationServer)
|
|
|
|
add_executable(cutefish-notificationd ${SRCS})
|
|
|
|
target_link_libraries(cutefish-notificationd
|
|
Qt5::Core
|
|
Qt5::DBus
|
|
Qt5::Quick
|
|
Qt5::Widgets
|
|
)
|
|
|
|
install(TARGETS cutefish-notificationd
|
|
DESTINATION /usr/bin
|
|
COMPONENT Runtime
|
|
)
|