Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Resolve Boost FetchContent extraction issue on Windows #61

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions cmake/boost.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,25 @@ set(BOOST_IOSTREAMS_ENABLE_LZMA OFF)
set(BOOST_IOSTREAMS_ENABLE_BZIP2 OFF)

include(FetchContent)
FetchContent_Declare(
boost
URL https://github.com/boostorg/boost/releases/download/boost-1.81.0/boost-1.81.0.tar.gz
URL_HASH MD5=ffac94fbdd92d6bc70a897052022eeba
OVERRIDE_FIND_PACKAGE
)

if(WIN32)
FetchContent_Declare(
boost
URL https://github.com/boostorg/boost/releases/download/boost-1.81.0/boost-1.81.0.zip
URL_HASH MD5=375693214b89309d2003f5296422c0a8
OVERRIDE_FIND_PACKAGE
)
else()
FetchContent_Declare(
boost
URL https://github.com/boostorg/boost/releases/download/boost-1.81.0/boost-1.81.0.tar.gz
URL_HASH MD5=ffac94fbdd92d6bc70a897052022eeba
OVERRIDE_FIND_PACKAGE
)
endif()

FetchContent_MakeAvailable(boost)

if (zlib_SOURCE_DIR)
if(zlib_SOURCE_DIR)
target_include_directories(boost_iostreams PRIVATE ${zlib_SOURCE_DIR} ${zlib_BINARY_DIR})
endif()