Skip to content

Commit

Permalink
Fix typo in NO_HDF5 check (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacWarren authored Jan 10, 2025
1 parent 9678c8f commit 8d5f3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ if (NOT (CMAKE_BUILD_TYPE STREQUAL "Release") AND NOT DEFINED ENV{BODO_SKIP_CPP_
"bodo/tests/test_theta_sketches.cpp")
endif()

if($"ENV{NO_HDF5}" STREQUAL "1")
if("$ENV{NO_HDF5}" STREQUAL "1")
set(NO_HDF5 TRUE)
else()
list(APPEND sources_list "bodo/io/_hdf5.cpp")
Expand Down

0 comments on commit 8d5f3d7

Please sign in to comment.