File tree Expand file tree Collapse file tree 3 files changed +3
-23
lines changed
Expand file tree Collapse file tree 3 files changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -188,22 +188,6 @@ list(APPEND _BLOSC_LIBRARYDIR_SEARCH_DIRS
188188 ${SYSTEM_LIBRARY_PATHS}
189189)
190190
191- # Library suffix handling
192-
193- set (_BLOSC_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES} )
194- set (_BLOSC_ORIG_CMAKE_FIND_LIBRARY_PREFIXES ${CMAKE_FIND_LIBRARY_PREFIXES} )
195-
196- if (MSVC )
197- if (BLOSC_USE_STATIC_LIBS)
198- set (CMAKE_FIND_LIBRARY_SUFFIXES ".lib" )
199- set (CMAKE_FIND_LIBRARY_PREFIXES "${CMAKE_FIND_LIBRARY_PREFIXES} ;lib" )
200- endif ()
201- else ()
202- if (BLOSC_USE_STATIC_LIBS)
203- set (CMAKE_FIND_LIBRARY_SUFFIXES ".a" )
204- endif ()
205- endif ()
206-
207191set (Blosc_LIB_COMPONENTS "" )
208192# NOTE: Search for debug version first (see vcpkg hack)
209193list (APPEND BLOSC_BUILD_TYPES DEBUG RELEASE)
@@ -246,13 +230,6 @@ foreach(BUILD_TYPE ${BLOSC_BUILD_TYPES})
246230 set (CMAKE_IGNORE_PATH ${_BLOSC_CMAKE_IGNORE_PATH} )
247231endforeach ()
248232
249- # Reset library suffix
250-
251- set (CMAKE_FIND_LIBRARY_SUFFIXES ${_BLOSC_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES} )
252- set (CMAKE_FIND_LIBRARY_PREFIXES ${_BLOSC_ORIG_CMAKE_FIND_LIBRARY_PREFIXES} )
253- unset (_BLOSC_ORIG_CMAKE_FIND_LIBRARY_SUFFIXES)
254- unset (_BLOSC_ORIG_CMAKE_FIND_LIBRARY_PREFIXES)
255-
256233if (Blosc_LIBRARY_DEBUG AND Blosc_LIBRARY_RELEASE)
257234 # if the generator is multi-config or if CMAKE_BUILD_TYPE is set for
258235 # single-config generators, set optimized and debug libraries
Original file line number Diff line number Diff line change 2222
2323#include < gtest/gtest.h>
2424#include < algorithm> // for std::sort
25+ #include < iomanip> // for std::setw, std::setfill
2526
2627namespace nanovdb {// this namespace is required by gtest
2728
Original file line number Diff line number Diff line change 1+ Build:
2+ - Fixed an issue with the Blosc CMake FindPackage for the OpenVDB Windows static library.
You can’t perform that action at this time.
0 commit comments