-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix boost unit test framework in cmake and add cmake files
- Loading branch information
1 parent
3348c37
commit 9b99c84
Showing
9 changed files
with
150 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Boost.Geometry | ||
# Copyright (c) 2024 Barend Gehrels, Amsterdam, the Netherlands. | ||
# Use, modification and distribution is subject to the Boost Software License, | ||
# 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 | ||
calculate_point_order | ||
approximately_equals | ||
partition | ||
tupled_output | ||
visit | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Boost.Geometry | ||
# Copyright (c) 2024 Barend Gehrels, Amsterdam, the Netherlands. | ||
# Use, modification and distribution is subject to the Boost Software License, | ||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at | ||
# http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
# Cartesian | ||
foreach(item IN ITEMS | ||
assemble | ||
copy_segment_point | ||
get_clusters | ||
get_distance_measure | ||
get_ring | ||
get_turn_info | ||
get_turns | ||
get_turns_const | ||
get_turns_areal_areal | ||
get_turns_linear_areal | ||
get_turns_linear_linear | ||
overlay | ||
sort_by_side_basic | ||
sort_by_side | ||
relative_order | ||
select_rings | ||
self_intersection_points | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() | ||
|
||
# Spherical | ||
foreach(item IN ITEMS | ||
get_turns_areal_areal_sph | ||
get_turns_linear_areal_sph | ||
get_turns_linear_linear_sph | ||
get_turns_linear_linear_geo | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Boost.Geometry | ||
# Copyright (c) 2024 Barend Gehrels, Amsterdam, the Netherlands. | ||
# Use, modification and distribution is subject to the Boost Software License, | ||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at | ||
# http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
# Cartesian | ||
foreach(item IN ITEMS | ||
relate_const_custom | ||
relate_areal_areal | ||
relate_linear_areal | ||
relate_linear_linear | ||
relate_pointlike_geometry | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() | ||
|
||
# Spherical | ||
foreach(item IN ITEMS | ||
relate_areal_areal_sph | ||
relate_linear_areal_sph | ||
relate_linear_linear_sph | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Boost.Geometry | ||
# Copyright (c) 2024 Barend Gehrels, Amsterdam, the Netherlands. | ||
# Use, modification and distribution is subject to the Boost Software License, | ||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at | ||
# http://www.boost.org/LICENSE_1_0.txt) | ||
|
||
# Cartesian | ||
foreach(item IN ITEMS | ||
within | ||
within_areal_areal | ||
within_gc | ||
within_linear_areal | ||
within_linear_linear | ||
within_multi | ||
within_pointlike_geometry | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() | ||
|
||
# Spherical | ||
foreach(item IN ITEMS | ||
within_sph | ||
within_sph_geo | ||
) | ||
boost_geometry_add_unit_test("algorithms" ${item}) | ||
endforeach() |