mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 22:23:44 +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
373 B
CMake
20 lines
373 B
CMake
project(track_analyzing_tests)
|
|
|
|
set(SRC
|
|
../track_analyzer/cmd_balance_csv.cpp
|
|
../track_analyzer/cmd_balance_csv.hpp
|
|
../track_analyzer/utils.cpp
|
|
../track_analyzer/utils.hpp
|
|
balance_tests.cpp
|
|
statistics_tests.cpp
|
|
track_archive_reader_tests.cpp
|
|
)
|
|
|
|
omim_add_test(${PROJECT_NAME} ${SRC})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
map
|
|
tracking
|
|
track_analyzing
|
|
)
|