mirror of https://github.com/ARMmbed/mbed-os.git
29 lines
705 B
CMake
29 lines
705 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_CellularPower.cpp
|
|
)
|
|
|
|
# Test files
|
|
set(unittest-test-sources
|
|
features/cellular/framework/AT/at_cellularpower/at_cellularpowertest.cpp
|
|
stubs/ATHandler_stub.cpp
|
|
stubs/AT_CellularBase_stub.cpp
|
|
stubs/EventQueue_stub.cpp
|
|
stubs/FileHandle_stub.cpp
|
|
stubs/CellularUtil_stub.cpp
|
|
stubs/mbed_assert_stub.c
|
|
)
|