2023-02-01 18:08:11 +08:00
|
|
|
set (VERSION_MAJOR 1)
|
|
|
|
set (VERSION_MINOR 0)
|
|
|
|
set (VERSION_MICRO 0)
|
|
|
|
set (NOTIFICATION_SERVER_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_MICRO})
|
|
|
|
configure_file (notification-server-config.h.in notification-server-config.h @ONLY)
|
|
|
|
set(3rdParties_DIR ../3rd-parties/qtsingleapplication/src/)
|
2023-01-31 17:39:14 +08:00
|
|
|
set(notificationServer_SRCS
|
|
|
|
server.h
|
|
|
|
server-private.h
|
|
|
|
server.cpp
|
|
|
|
main.cpp
|
2023-02-01 18:08:11 +08:00
|
|
|
${3rdParties_DIR}qtsinglecoreapplication.h
|
|
|
|
${3rdParties_DIR}qtsinglecoreapplication.cpp
|
|
|
|
${3rdParties_DIR}qtlocalpeer.h
|
|
|
|
${3rdParties_DIR}qtlocalpeer.cpp
|
2023-02-03 18:01:06 +08:00
|
|
|
notification-server-application.cpp
|
|
|
|
notification-server-application.h
|
|
|
|
notification.cpp
|
|
|
|
notification.h
|
|
|
|
)
|
|
|
|
|
|
|
|
qt_add_dbus_adaptor(notificationServer_SRCS ../dbus/org.freedesktop.Notifications.xml server-private.h NotificationServer::ServerPrivate)
|
|
|
|
qt_add_dbus_adaptor(notificationServer_SRCS ../dbus/org.ukui.NotificationServer.xml server-private.h NotificationServer::ServerPrivate)
|
2023-01-31 17:39:14 +08:00
|
|
|
|
|
|
|
add_executable(ukui-notification-server ${notificationServer_SRCS})
|
2023-02-01 18:08:11 +08:00
|
|
|
target_include_directories(ukui-notification-server PUBLIC ${3rdParties_DIR})
|
|
|
|
|
2023-01-31 17:39:14 +08:00
|
|
|
target_link_libraries(ukui-notification-server
|
|
|
|
PRIVATE
|
|
|
|
Qt${QT_VERSION_MAJOR}::Core
|
|
|
|
Qt${QT_VERSION_MAJOR}::DBus
|
2023-02-01 18:08:11 +08:00
|
|
|
Qt${QT_VERSION_MAJOR}::Network
|
2023-01-31 17:39:14 +08:00
|
|
|
)
|
|
|
|
set(TS_FILES ukui-notification_zh_CN.ts)
|
|
|
|
if(COMMAND qt_create_translation)
|
|
|
|
qt_create_translation(QM_FILES ${CMAKE_SOURCE_DIR}/translations ${TS_FILES})
|
|
|
|
else()
|
|
|
|
qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR}/translations ${TS_FILES})
|
|
|
|
endif()
|