Skip to content

Commit

Permalink
use internal boost, update to 1.85.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joergbrech committed Jun 11, 2024
1 parent 1d8aaeb commit 233c9c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ dependencies:
# other build dependencies
- ninja=1.10.2 # not strictly needed, tigl can be build using any other camke generator
- freeimageplus # used by opencascade
- conda-forge::boost-cpp=1.85.0 # TiGL comes equipped with boost 1.76, that can be used by using the CMAKE option TIGL_USE_INTERNAL_BOOST=ON
- brotlipy # Workaround for issue on windows, see: https://github.com/conda/conda/issues/9903#issuecomment-647091019
8 changes: 4 additions & 4 deletions thirdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
project(thirdparty-libs)

# -------------- BOOST ----------------- #
option(TIGL_USE_INTERNAL_BOOST "Use boost library that comes with tigl" OFF)
option(TIGL_USE_INTERNAL_BOOST "Use boost library that comes with tigl" ON)
if (TIGL_USE_INTERNAL_BOOST)

# boost
set (BOOST_DIR ${PROJECT_BINARY_DIR}/boost_1_76_0)
set (BOOST_ARCHIVE ${PROJECT_SOURCE_DIR}/boost_1_76_0.tar.gz)
set (Boost_VERSION "1.76.0")
set (BOOST_DIR ${PROJECT_BINARY_DIR}/boost_1_85_0)
set (BOOST_ARCHIVE ${PROJECT_SOURCE_DIR}/boost_1_85_0.tar.gz)
set (Boost_VERSION "1.85.0")

if (NOT EXISTS ${BOOST_DIR})
message(STATUS "Extracting boost ${Boost_VERSION}")
Expand Down
Binary file removed thirdparty/boost_1_76_0.tar.gz
Binary file not shown.
Binary file added thirdparty/boost_1_85_0.tar.gz
Binary file not shown.

0 comments on commit 233c9c5

Please sign in to comment.