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:
authorgreshilov <slovaricheg@gmail.com>2017-12-21 00:20:48 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-12-28 12:38:00 +0300
commit4e50a45aadfa0e89bd0e65f6d9342d1e2abc389f (patch)
tree7abb7d5fe5242245be11dce6a95c5b321aced030 /geometry
parent266771ae02c3ba91031614209b202b7890cc29b3 (diff)
[qmake] Goodbye QMake!
+3party dirs +Rebased
Diffstat (limited to 'geometry')
-rw-r--r--geometry/geometry.pro68
-rw-r--r--geometry/geometry_tests/geometry_tests.pro54
2 files changed, 0 insertions, 122 deletions
diff --git a/geometry/geometry.pro b/geometry/geometry.pro
deleted file mode 100644
index fcef54da1b..0000000000
--- a/geometry/geometry.pro
+++ /dev/null
@@ -1,68 +0,0 @@
-# Geomery library.
-
-TARGET = geometry
-TEMPLATE = lib
-CONFIG += staticlib warn_on
-
-ROOT_DIR = ..
-
-include($$ROOT_DIR/common.pri)
-
-SOURCES += \
- algorithm.cpp \
- angles.cpp \
- bounding_box.cpp \
- calipers_box.cpp \
- clipping.cpp \
- convex_hull.cpp \
- diamond_box.cpp \
- distance_on_sphere.cpp \
- latlon.cpp \
- line2d.cpp \
- mercator.cpp \
- nearby_points_sweeper.cpp \
- packer.cpp \
- region2d/binary_operators.cpp \
- robust_orientation.cpp \
- screenbase.cpp \
- segment2d.cpp \
- spline.cpp \
- triangle2d.cpp \
-
-HEADERS += \
- algorithm.hpp \
- angles.hpp \
- any_rect2d.hpp \
- avg_vector.hpp \
- bounding_box.hpp \
- calipers_box.hpp \
- cellid.hpp \
- clipping.hpp \
- convex_hull.hpp \
- covering.hpp \
- covering_utils.hpp \
- diamond_box.hpp \
- distance.hpp \
- distance_on_sphere.hpp \
- latlon.hpp \
- line2d.hpp \
- mercator.hpp \
- nearby_points_sweeper.hpp \
- packer.hpp \
- point2d.hpp \
- pointu_to_uint64.hpp \
- polygon.hpp \
- polyline2d.hpp \
- rect2d.hpp \
- rect_intersect.hpp \
- region2d.hpp \
- region2d/binary_operators.hpp \
- region2d/boost_concept.hpp \
- robust_orientation.hpp \
- screenbase.hpp \
- segment2d.hpp \
- simplification.hpp \
- spline.hpp \
- transformations.hpp \
- tree4d.hpp \
- triangle2d.hpp \
diff --git a/geometry/geometry_tests/geometry_tests.pro b/geometry/geometry_tests/geometry_tests.pro
deleted file mode 100644
index f0747bd140..0000000000
--- a/geometry/geometry_tests/geometry_tests.pro
+++ /dev/null
@@ -1,54 +0,0 @@
-# Geometry library tests.
-
-TARGET = geometry_tests
-CONFIG += console warn_on
-CONFIG -= app_bundle
-TEMPLATE = app
-
-ROOT_DIR = ../..
-DEPENDENCIES = geometry base
-
-include($$ROOT_DIR/common.pri)
-
-DEFINES += OMIM_UNIT_TEST_DISABLE_PLATFORM_INIT
-
-HEADERS += \
- equality.hpp \
- large_polygon.hpp \
- test_regions.hpp \
-
-SOURCES += \
- ../../testing/testingmain.cpp \
- algorithm_test.cpp \
- angle_test.cpp \
- anyrect_test.cpp \
- bounding_box_tests.cpp \
- calipers_box_tests.cpp \
- cellid_test.cpp \
- clipping_test.cpp \
- common_test.cpp \
- convex_hull_tests.cpp \
- covering_test.cpp \
- diamond_box_tests.cpp \
- distance_on_sphere_test.cpp \
- distance_test.cpp \
- intersect_test.cpp \
- latlon_test.cpp \
- line2d_tests.cpp \
- mercator_test.cpp \
- nearby_points_sweeper_test.cpp \
- packer_test.cpp \
- point_test.cpp \
- pointu_to_uint64_test.cpp \
- polygon_test.cpp \
- rect_test.cpp \
- region2d_binary_op_test.cpp \
- region_test.cpp \
- robust_test.cpp \
- screen_test.cpp \
- segments_intersect_test.cpp \
- simplification_test.cpp \
- spline_test.cpp \
- transformations_test.cpp \
- tree_test.cpp \
- vector_test.cpp \