mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-24 06:53:46 +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
20 lines
297 B
CMake
20 lines
297 B
CMake
project(traffic)
|
|
|
|
set(SRC
|
|
speed_groups.cpp
|
|
speed_groups.hpp
|
|
traffic_cache.cpp
|
|
traffic_cache.hpp
|
|
traffic_info.cpp
|
|
traffic_info.hpp
|
|
)
|
|
|
|
omim_add_library(${PROJECT_NAME} ${SRC})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
routing_common
|
|
indexer
|
|
)
|
|
|
|
omim_add_test_subdirectory(traffic_tests)
|