Skip to content

Commit

Permalink
Put the find_package(Geogram) call in BRLCAD_ExternalDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Jan 26, 2024
1 parent c1b6625 commit 416c823
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 5 additions & 0 deletions misc/CMake/BRLCAD_ExternalDeps.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -969,6 +969,11 @@ find_package_reset(MANIFOLD RESET_TP)
set(MANIFOLD_ROOT "${CMAKE_BINARY_DIR}")
find_package(MANIFOLD)

# Geogram - a programming library with geometric algorithms
# https://github.com/BrunoLevy/geogram
find_package_reset(GEOGRAM RESET_TP)
set(GEOGRAM_ROOT "${CMAKE_BINARY_DIR}")
find_package(Geogram)

# openNURBS Non-Uniform Rational BSpline library
# https://github.com/mcneel/opennurbs
Expand Down
2 changes: 0 additions & 2 deletions src/libged/bot/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ set(BOT_INCLUDE_DIRS
${GED_INCLUDE_DIRS}
)

find_package(Geogram REQUIRED)

set(BOT_LOCAL_INCLUDE_DIRS
${BRLCAD_SOURCE_DIR}/src/libbu # for fort.h
${GEOGRAM_INCLUDE_DIR}
Expand Down

0 comments on commit 416c823

Please sign in to comment.