project(Dekko-ubuntu-notification-plugin-service)

list(APPEND dekkod-notify_SRCS
    main.cpp
    notificationwatcher.cpp
    pushclient.cpp
)

add_executable(dekkod-notify ${dekkod-notify_SRCS})

target_include_directories(dekkod-notify
    PRIVATE
    ${QmfClient_INCLUDE_DIRS}
)

target_link_libraries(dekkod-notify
    PUBLIC
    accounts
    ${QmfClient_LIBRARIES}
    Qt5::Core
    Qt5::DBus
    Qt5::Gui
    Qt5::Widgets
)

install(TARGETS
    dekkod-notify
    DESTINATION ${DEKKO_PLUGINS_DIR}/notify
)
