mirror of https://github.com/ARMmbed/mbed-os.git
32 lines
793 B
CMake
32 lines
793 B
CMake
|
|
####################
|
|
# UNIT TESTS
|
|
####################
|
|
|
|
# Add test specific include paths
|
|
set(unittest-includes ${unittest-includes}
|
|
features/cellular/framework/common/util
|
|
../features/cellular/framework/common
|
|
../features/cellular/framework/AT
|
|
../features/frameworks/mbed-client-randlib/mbed-client-randlib
|
|
)
|
|
|
|
# Source files
|
|
set(unittest-sources
|
|
../features/cellular/framework/AT/AT_CellularStack.cpp
|
|
)
|
|
|
|
# Test files
|
|
set(unittest-test-sources
|
|
features/cellular/framework/AT/at_cellularstack/at_cellularstacktest.cpp
|
|
stubs/ATHandler_stub.cpp
|
|
stubs/AT_CellularBase_stub.cpp
|
|
stubs/EventQueue_stub.cpp
|
|
stubs/FileHandle_stub.cpp
|
|
stubs/CellularUtil_stub.cpp
|
|
stubs/us_ticker_stub.cpp
|
|
stubs/NetworkStack_stub.cpp
|
|
stubs/SocketAddress_stub.cpp
|
|
stubs/mbed_assert_stub.c
|
|
)
|