mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 14:43:43 +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
24 lines
388 B
CMake
24 lines
388 B
CMake
project(address_parser)
|
|
|
|
set(SRC
|
|
processor.cpp
|
|
processor.hpp
|
|
tiger_parser.cpp
|
|
tiger_parser.hpp
|
|
)
|
|
|
|
omim_add_library(${PROJECT_NAME} ${SRC})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
generator
|
|
)
|
|
|
|
|
|
omim_add_executable(address_parser_tool parser_tool.cpp)
|
|
target_link_libraries(address_parser_tool
|
|
${PROJECT_NAME}
|
|
gflags::gflags
|
|
)
|
|
|
|
omim_add_test_subdirectory(address_parser_tests)
|