New cpp folder structure

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk
2025-07-17 22:35:52 +03:00
committed by Konstantin Pastbin
parent c9cbb64f12
commit 76ffc99abd
2390 changed files with 345 additions and 339 deletions

View File

@@ -0,0 +1,38 @@
# This subproject implements integration tests.
# This tests are launched on the whole world dataset.
# It is recommended to place tests here in the following cases:
# - tests are written to be launch on the whole world dataset;
# - tests covers significant number of subsystems;
project(routing_integration_tests)
set(SRC
absent_regions_finder_tests.cpp
archival_reporter_tests.cpp
bicycle_route_test.cpp
bicycle_turn_test.cpp
concurrent_feature_parsing_test.cpp
cross_country_routing_tests.cpp
get_altitude_test.cpp
guides_tests.cpp
pedestrian_route_test.cpp
road_graph_tests.cpp
roundabouts_tests.cpp
route_test.cpp
routing_test_tools.cpp
routing_test_tools.hpp
small_routes.cpp
speed_camera_notifications_tests.cpp
street_names_test.cpp
transit_route_test.cpp
turn_test.cpp
)
omim_add_test(${PROJECT_NAME} ${SRC} REQUIRE_SERVER)
target_link_libraries(${PROJECT_NAME}
tracking
routing
map
)