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

CMakeLists.txt « geometry_tests « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 594287dfa5788da042d9365ecec35f350f95cdf2 (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
project(geometry_tests)

add_definitions(-DOMIM_UNIT_TEST_DISABLE_PLATFORM_INIT)

set(
  SRC
  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
  equality.hpp
  intersect_test.cpp
  large_polygon.hpp
  latlon_test.cpp
  line2d_tests.cpp
  nearby_points_sweeper_test.cpp
  mercator_test.cpp
  packer_test.cpp
  point_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
  test_regions.hpp
  transformations_test.cpp
  tree_test.cpp
  vector_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(${PROJECT_NAME} geometry base)