~aleteoryx/muditaos

ref: 950cf78aa9fe3f30d25d5048f0ec46bf5fe2eac0 muditaos/module-sys/common/CMakeLists.txt -rw-r--r-- 674 bytes
950cf78a — Lukasz Mastalerz [CP-1825] Update while on onboarding screen 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_library(sys-common INTERFACE)

target_include_directories(sys-common
    INTERFACE
        $<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/include>
)

target_sources(sys-common
    INTERFACE
        include/system/Common.hpp
        include/system/Constants.hpp
        include/system/messages/TetheringQuestionRequest.hpp
        include/system/messages/RequestCpuFrequencyMessage.hpp
        include/system/messages/SentinelRegistrationMessage.hpp
        include/system/messages/DeviceRegistrationMessage.hpp
        include/system/messages/TetheringStateRequest.hpp
        include/system/messages/SystemManagerMessage.hpp
        include/system/SystemReturnCodes.hpp
)