~aleteoryx/muditaos

ref: 50f28e8f19b23384aac9efd5c22cc155d451cace muditaos/module-services/service-cellular/CMakeLists.txt -rw-r--r-- 630 bytes
50f28e8f — Bartosz Cichocki [EGD-4270] updated test API, added sending message case in test harness (#1042) 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
project(service-cellular)
message( "${PROJECT_NAME}  ${CMAKE_CURRENT_LIST_DIR}" )

set(SOURCES
    CellularCall.cpp
    CellularServiceAPI.cpp
    CellularUrcHandler.cpp
    ServiceCellular.cpp
    SignalStrength.cpp
    CallRequest.cpp
    SimCard.cpp
    CallRequestFactory.cpp
    CellularCallRequestHandler.cpp
)

add_library(${PROJECT_NAME} STATIC ${SOURCES})

target_include_directories(${PROJECT_NAME}
    PUBLIC
        ${CMAKE_CURRENT_LIST_DIR}
)

target_link_libraries(${PROJECT_NAME}
    PRIVATE
        service-antenna
        service-audio
        service-evtmgr
        module-bsp
        module-cellular
    )