-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! compress: Address blosc2 compress warnings in Windows
- Loading branch information
1 parent
be4a8c3
commit 49f7d86
Showing
2 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
set +u | ||
C:/Miniconda/condabin/conda.bat activate base | ||
|
||
# This is needed for findLZ4.cmake (called from Blosc2) to find LZ4 libraries | ||
# (non-cmake). | ||
export CMAKE_INCLUDE_PATH=C:/Miniconda/Library/include | ||
export CMAKE_LIBRARY_PATH=C:/Miniconda/Library/lib | ||
# We do not use conda cmake, thus we have to hint cmake where is | ||
# conda root dir. | ||
export CMAKE_PREFIX_PATH="C:/Miniconda/Library;$CMAKE_PREFIX_PATH" |