mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +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
39 lines
572 B
CMake
39 lines
572 B
CMake
project(tracking)
|
|
|
|
set(
|
|
SRC
|
|
connection.cpp
|
|
connection.hpp
|
|
protocol.cpp
|
|
protocol.hpp
|
|
reporter.cpp
|
|
reporter.hpp
|
|
archival_file.cpp
|
|
archival_file.hpp
|
|
archival_manager.cpp
|
|
archival_manager.hpp
|
|
archival_reporter.cpp
|
|
archival_reporter.hpp
|
|
archive.cpp
|
|
archive.hpp
|
|
)
|
|
|
|
omim_add_library(${PROJECT_NAME} ${SRC})
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PUBLIC
|
|
routing
|
|
traffic
|
|
|
|
PRIVATE
|
|
base
|
|
coding
|
|
geometry
|
|
platform
|
|
)
|
|
|
|
omim_add_test_subdirectory(tracking_tests)
|
|
|
|
if (USE_LIBFUZZER)
|
|
add_subdirectory(tracking_fuzz_tests)
|
|
endif()
|