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

Upgrade glaze to 4.2.2 #651

Merged
merged 1 commit into from
Dec 24, 2024
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
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ if(NOT glaze)

FetchContent_Declare(
glaze
URL https://github.com/stephenberry/glaze/archive/refs/tags/v4.2.0.tar.gz
URL_HASH SHA256=96037265d138a0d778d2b8672c976bc2739b3f753aefabc3fcf55ada3ead1869
URL https://github.com/stephenberry/glaze/archive/refs/tags/v4.2.2.tar.gz
URL_HASH SHA256=965e32de67e60d185402e8cfe684c6d40c1f018a4fa5e781b11b0cac0817edb9
)

list(APPEND fetchContentPackagesToMakeAvailable glaze)
Expand Down Expand Up @@ -235,6 +235,7 @@ if(MSVC)
add_compile_definitions(NOMINMAX)
add_compile_definitions(_SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING)
add_compile_definitions(_SILENCE_CXX23_ALIGNED_STORAGE_DEPRECATION_WARNING)
add_compile_options(/Zc:preprocessor) # Needed by glaze
else()
if(CCT_ENABLE_ASAN)
if (NOT CCT_ASAN_OPTIONS)
Expand Down
Loading