Skip to content

Commit b051ccd

Browse files
committed
test: add cmake files for rtree tests
1 parent fb99e6f commit b051ccd

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed

index/test/rtree/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ foreach(item IN ITEMS
1919
boost_geometry_add_unit_test("index" ${item})
2020
endforeach()
2121

22+
add_subdirectory(exceptions)
23+
add_subdirectory(generated)
2224
add_subdirectory(strategies)
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Boost.Geometry
2+
# Copyright (c) 2025 Adam Wulkiewicz, Lodz, Poland.
3+
# Copyright (c) 2024, Oracle and/or its affiliates.
4+
# Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
5+
# Use, modification and distribution is subject to the Boost Software License,
6+
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7+
# http://www.boost.org/LICENSE_1_0.txt)
8+
9+
foreach(item IN ITEMS
10+
rtree_exceptions_lin
11+
rtree_exceptions_qua
12+
rtree_exceptions_rst
13+
)
14+
boost_geometry_add_unit_test("index" ${item})
15+
endforeach()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Boost.Geometry
2+
# Copyright (c) 2025 Adam Wulkiewicz, Lodz, Poland.
3+
# Use, modification and distribution is subject to the Boost Software License,
4+
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5+
# http://www.boost.org/LICENSE_1_0.txt)
6+
7+
add_subdirectory(b2d)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Boost.Geometry
2+
# Copyright (c) 2025 Adam Wulkiewicz, Lodz, Poland.
3+
# Use, modification and distribution is subject to the Boost Software License,
4+
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5+
# http://www.boost.org/LICENSE_1_0.txt)
6+
7+
foreach(item IN ITEMS
8+
rtree_lin_add_b2d
9+
rtree_lin_mod_b2d
10+
rtree_lin_que_b2d
11+
rtree_qua_add_b2d
12+
rtree_qua_mod_b2d
13+
rtree_qua_que_b2d
14+
rtree_rst_add_b2d
15+
rtree_rst_mod_b2d
16+
rtree_rst_que_b2d
17+
)
18+
boost_geometry_add_unit_test("index" ${item})
19+
endforeach()

index/test/rtree/strategies/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Boost.Geometry
22
# Copyright (c) 2025 Adam Wulkiewicz, Lodz, Poland.
3-
# Copyright (c) 2024, Oracle and/or its affiliates.
4-
# Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
53
# Use, modification and distribution is subject to the Boost Software License,
64
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
75
# http://www.boost.org/LICENSE_1_0.txt)

0 commit comments

Comments
 (0)