Skip to content

Commit

Permalink
Fix cmake robustness tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vissarion committed Aug 14, 2024
1 parent d774588 commit fbd158a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ target_link_libraries(boost_geometry
Boost::concept_check
Boost::config
Boost::core
Boost::crc
Boost::function_types
Boost::iterator
Boost::lexical_cast
Expand All @@ -32,6 +33,7 @@ target_link_libraries(boost_geometry
Boost::mpl
Boost::multiprecision
Boost::numeric_conversion
Boost::program_options
Boost::qvm
Boost::range
Boost::rational
Expand Down Expand Up @@ -100,9 +102,11 @@ if(BUILD_TESTING AND EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/test/CMakeLists.txt")
config
algorithm
any
crc
lexical_cast
math
multiprecision
program_options
qvm
rational
serialization
Expand Down
11 changes: 6 additions & 5 deletions test/robustness/convex_hull/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)

foreach(item IN ITEMS
random_multi_points
)
boost_geometry_add_unit_test("robustness" ${item})
endforeach()
boost_geometry_add_unit_test("robustness" random_multi_points)

target_include_directories(boost_geometry_robustness_random_multi_points
PRIVATE
"${PROJECT_SOURCE_DIR}/test/robustness"
.)
8 changes: 6 additions & 2 deletions test/robustness/overlay/areal_areal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@
# http://www.boost.org/LICENSE_1_0.txt)

foreach(item IN ITEMS
general_intersection_precision
#general_intersection_precision
interior_triangles
intersection_pies
intersection_stars
intersects
random_ellipses_stars
recursive_polygons
star_comb
ticket_9081
#ticket_9081
)
boost_geometry_add_unit_test("robustness" ${item})
target_include_directories(boost_geometry_robustness_${item}
PRIVATE
"${PROJECT_SOURCE_DIR}/test/robustness"
.)
endforeach()
8 changes: 6 additions & 2 deletions test/robustness/overlay/buffer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
# http://www.boost.org/LICENSE_1_0.txt)

foreach(item IN ITEMS
many_ring_buffer
multi_point_growth
#many_ring_buffer
#multi_point_growth
recursive_polygons_buffer
)
boost_geometry_add_unit_test("robustness" ${item})
target_include_directories(boost_geometry_robustness_${item}
PRIVATE
"${PROJECT_SOURCE_DIR}/test/robustness"
.)
endforeach()

0 comments on commit fbd158a

Please sign in to comment.