Skip to content

Commit

Permalink
A desperate FindModule fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmatena committed Sep 20, 2024
1 parent 6c044e6 commit 373f996
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmake/FindBlosc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,11 @@ set(Blosc_LIB_COMPONENTS "")
list(APPEND BLOSC_BUILD_TYPES DEBUG RELEASE)

foreach(BUILD_TYPE ${BLOSC_BUILD_TYPES})
set(_BLOSC_LIB_NAME blosc)
if(WIN32)
set(_BLOSC_LIB_NAME libblosc)
else()
set(_BLOSC_LIB_NAME blosc)
endif()

set(_BLOSC_CMAKE_IGNORE_PATH ${CMAKE_IGNORE_PATH})
if(VCPKG_TOOLCHAIN)
Expand Down

0 comments on commit 373f996

Please sign in to comment.