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

CMakeLists.txt « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d4c4713ec91bf3069e31d2d69e636d98bee7e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
project(geometry)

set(
  SRC
  algorithm.cpp
  algorithm.hpp
  angles.cpp
  angles.hpp
  any_rect2d.hpp
  avg_vector.hpp
  bounding_box.cpp
  bounding_box.hpp
  calipers_box.cpp
  calipers_box.hpp
  cellid.hpp
  clipping.cpp
  clipping.hpp
  convex_hull.cpp
  convex_hull.hpp
  covering.hpp
  covering_utils.hpp
  diamond_box.cpp
  diamond_box.hpp
  distance.hpp
  distance_on_sphere.cpp
  distance_on_sphere.hpp
  latlon.cpp
  latlon.hpp
  line2d.cpp
  line2d.hpp
  mercator.cpp
  mercator.hpp
  nearby_points_sweeper.cpp
  nearby_points_sweeper.hpp
  packer.cpp
  packer.hpp
  point2d.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(${PROJECT_NAME} ${SRC})

omim_add_test_subdirectory(geometry_tests)