Files
comaps/libs/routing/routing_consistency_tests/CMakeLists.txt
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

19 lines
427 B
CMake

# This subproject implements routing consistency tests.
# This tests are launched on the whole world dataset.
project(routing_consistency_tests)
set(SRC
../routing_integration_tests/routing_test_tools.cpp
routing_consistency_tests.cpp
)
# Not using omim_add_test because we don't need testingmain.cpp
omim_add_executable(${PROJECT_NAME} ${SRC})
target_link_libraries(${PROJECT_NAME}
map
platform
gflags::gflags
)