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:
authorTimofey <t.danshin@corp.mail.ru>2016-09-01 14:15:09 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-09-06 13:59:55 +0300
commit4ceff6053ff5c84a72b57946c4a568c220fadf06 (patch)
tree3ed0075a574508415b2853643e9d0bf4da5ddf2a /geometry/CMakeLists.txt
parentd1c09dee99fea872e5b90a13db85e75bb0ae3bb8 (diff)
Wrote cmake lists for base and base_tests
Diffstat (limited to 'geometry/CMakeLists.txt')
-rw-r--r--geometry/CMakeLists.txt51
1 files changed, 51 insertions, 0 deletions
diff --git a/geometry/CMakeLists.txt b/geometry/CMakeLists.txt
new file mode 100644
index 0000000000..0cdcb8927a
--- /dev/null
+++ b/geometry/CMakeLists.txt
@@ -0,0 +1,51 @@
+add_subdirectory(geometry_tests)
+
+set(
+ SRC
+ algorithm.cpp
+ algorithm.hpp
+ angles.cpp
+ angles.hpp
+ any_rect2d.hpp
+ avg_vector.hpp
+ cellid.hpp
+ clipping.cpp
+ clipping.hpp
+ covering.hpp
+ covering_utils.hpp
+ distance.hpp
+ distance_on_sphere.cpp
+ distance_on_sphere.hpp
+ latlon.cpp
+ latlon.hpp
+ mercator.cpp
+ mercator.hpp
+ packer.cpp
+ packer.hpp
+ point2d.hpp
+ pointu_to_uint64.hpp
+ polygon.hpp
+ polyline2d.hpp
+ rect2d.hpp
+ rect_intersect.hpp
+ region2d.hpp
+ robust_orientation.cpp
+ robust_orientation.hpp
+ screenbase.cpp
+ screenbase.hpp
+ segment2d.cpp
+ segment2d.hpp
+ simplification.hpp
+ spline.cpp
+ spline.hpp
+ transformations.hpp
+ tree4d.hpp
+ triangle2d.cpp
+ triangle2d.hpp
+
+ region2d/binary_operators.cpp
+ region2d/binary_operators.hpp
+ region2d/boost_concept.hpp
+)
+
+omim_add_library(geometry ${SRC})