13 lines
324 B
CMake
13 lines
324 B
CMake
# define the test executable
|
|
add_executable(speed_table_tests
|
|
test_speed_table.cpp
|
|
../../../../src/modules/speed_table.cpp)
|
|
|
|
# define required search paths
|
|
target_include_directories(
|
|
speed_table_tests PUBLIC ${CMAKE_SOURCE_DIR}/src/modules
|
|
)
|
|
|
|
# tell build system about the test case
|
|
add_catch_test(speed_table_tests)
|