Skip to content

Commit

Permalink
Fix findblosc2 for windows. (#19284)
Browse files Browse the repository at this point in the history
  • Loading branch information
biagas committed Feb 2, 2024
1 parent e39cf26 commit e2c849a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/CMake/FindBlosc2.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@

# Use the BLOSC_DIR hint from the config-site .cmake file

SET_UP_THIRD_PARTY(BLOSC2 LIBS blosc2)
if(WIN32)
SET_UP_THIRD_PARTY(BLOSC2 LIBS libblosc2)
else()
SET_UP_THIRD_PARTY(BLOSC2 LIBS blosc2)
endif()

0 comments on commit e2c849a

Please sign in to comment.