Files
comaps/3party/opening_hours/CMakeLists.txt
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
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
2025-05-08 21:10:51 +07:00

27 lines
642 B
CMake

project(opening_hours)
set(SRC
opening_hours.hpp
opening_hours.cpp
opening_hours_parsers.hpp
opening_hours_parsers_terminals.cpp
parse_opening_hours.hpp
parse_opening_hours.cpp
parse_years.cpp
parse_weekdays.cpp
parse_weeks.cpp
parse_timespans.cpp
parse_months.cpp
rules_evaluation_private.hpp
rules_evaluation.hpp
rules_evaluation.cpp
)
omim_add_library(${PROJECT_NAME} ${SRC})
target_include_directories(${PROJECT_NAME} INTERFACE .)
omim_add_test_subdirectory(opening_hours_tests)
omim_add_test_subdirectory(opening_hours_integration_tests)
omim_add_test_subdirectory(opening_hours_supported_features_tests)