20 lines
553 B
CMake
20 lines
553 B
CMake
# define the test executable
|
|
add_executable(
|
|
leds_tests
|
|
${CMAKE_SOURCE_DIR}/src/modules/leds.cpp
|
|
${CMAKE_SOURCE_DIR}/src/modules/globals.cpp
|
|
${CMAKE_SOURCE_DIR}/src/modules/permanent_storage.cpp
|
|
${MODULES_STUBS_DIR}/stub_shr16.cpp
|
|
${MODULES_STUBS_DIR}/stub_timebase.cpp
|
|
${MODULES_STUBS_DIR}/stub_eeprom.cpp
|
|
test_leds.cpp
|
|
)
|
|
|
|
# define required search paths
|
|
target_include_directories(
|
|
leds_tests PUBLIC ${CMAKE_SOURCE_DIR}/src/modules ${CMAKE_SOURCE_DIR}/src/hal
|
|
)
|
|
|
|
# tell build system about the test case
|
|
add_catch_test(leds_tests)
|