~aleteoryx/muditaos

ref: 390a22363720b53e7182c05cd4109b1f4cc1ab3c muditaos/module-services/service-desktop/message-sender/CMakeLists.txt -rw-r--r-- 438 bytes
390a2236 — Alek Rudnik [EGD-8154] Added watchdog thread closure on system exit 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
add_library(endpoint-message-sender STATIC)

target_sources(
        endpoint-message-sender
    PRIVATE
        Sender.cpp
    PUBLIC
        include/endpoints/message/Sender.hpp
)

target_include_directories(
        endpoint-message-sender
    PUBLIC
        $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
)

target_link_libraries(
        endpoint-message-sender
    PUBLIC
        endpoint-message-common
        module-os
)