project(Dekko-Service-Worker)

list(APPEND dekko-worker_SRCS
    main.cpp
)

add_executable(dekko-worker ${dekko-worker_SRCS})

target_include_directories(dekko-worker
    PRIVATE
    ${QmfClient_INCLUDE_DIRS}
)

target_link_libraries(dekko-worker
    PUBLIC
    accounts
    mail
    ${QmfClient_LIBRARIES}
    Qt5::Core
)

install(TARGETS
    dekko-worker
    DESTINATION ${CMAKE_INSTALL_BINDIR}
)
