forked from organicmaps/organicmaps
18 lines
427 B
CMake
18 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
|
|
)
|