mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 13:53:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
305 B
CMake
18 lines
305 B
CMake
project(routing_quality_tests)
|
|
|
|
set(SRC
|
|
barriers_tests.cpp
|
|
bigger_roads_tests.cpp
|
|
ferry_tests.cpp
|
|
is_built_tests.cpp
|
|
leaps_postprocessing_tests.cpp
|
|
passby_roads_tests.cpp
|
|
waypoints_tests.cpp
|
|
)
|
|
|
|
omim_add_test(${PROJECT_NAME} ${SRC})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
routing_quality
|
|
)
|