Skip to content

Commit

Permalink
Add cs_undefined to cmake tests and reorder add_subdirectory calls
Browse files Browse the repository at this point in the history
  • Loading branch information
vissarion committed Aug 14, 2024
1 parent 1560422 commit 16f9c63
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 6 deletions.
22 changes: 16 additions & 6 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Boost.Geometry

# Copyright (c) 2024 Barend Gehrels, Amsterdam, the Netherlands.

# This file was modified by Oracle on 2024.
# Modifications copyright (c) 2024 Oracle and/or its affiliates.

# Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle

# 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)
Expand Down Expand Up @@ -48,16 +55,19 @@ if (NOT TARGET tests)
add_custom_target(tests)
endif()

add_subdirectory(core)
add_subdirectory(concepts)
add_subdirectory(geometries)
add_subdirectory(arithmetic)
add_subdirectory(algorithms)
add_subdirectory(arithmetic)
add_subdirectory(concepts)
add_subdirectory(core)
add_subdirectory(cs_undefined)
add_subdirectory(formulas)
add_subdirectory(geometries)
add_subdirectory(io)
add_subdirectory(iterators)
add_subdirectory(strategies)
add_subdirectory(policies)
add_subdirectory(io)

add_subdirectory(srs)
add_subdirectory(strategies)

add_subdirectory(util)
add_subdirectory(views)
21 changes: 21 additions & 0 deletions test/cs_undefined/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Boost.Geometry
# Copyright (c) 2024, Oracle and/or its affiliates.
# Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
# 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
distance
envelope_expand
index
is
measure
other
relops1
relops2
setops1
setops2
)
boost_geometry_add_unit_test("cs_undefined" ${item})
endforeach()

0 comments on commit 16f9c63

Please sign in to comment.