Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '3party/opening_hours/CMakeLists.txt')
-rw-r--r--3party/opening_hours/CMakeLists.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/3party/opening_hours/CMakeLists.txt b/3party/opening_hours/CMakeLists.txt
new file mode 100644
index 0000000000..eac362071c
--- /dev/null
+++ b/3party/opening_hours/CMakeLists.txt
@@ -0,0 +1,29 @@
+cmake_minimum_required(VERSION 3.2)
+
+project(opening_hours C CXX)
+
+include_directories(src ../../)
+
+add_compile_options(
+ "-Wall"
+ "-Wno-unused-function"
+ "-std=c++11"
+)
+
+
+set(
+ SRC
+ opening_hours.hpp
+ opening_hours.cpp
+ opening_hours_parsers.hpp
+ opening_hours_parsers_terminals.hpp
+ parse_opening_hours.hpp
+ parse_opening_hours.cpp
+ rules_evaluation_private.hpp
+ rules_evaluation.hpp
+ rules_evaluation.cpp
+)
+
+add_library(opening_hours ${SRC})
+
+omim_add_test_subdirectory(opening_hours_tests)