We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e1487a + d1e8394 commit 771521aCopy full SHA for 771521a
1 file changed
CMakeLists.txt
@@ -118,7 +118,9 @@ else()
118
FetchContent_Declare(blosc2
119
GIT_REPOSITORY https://github.com/Blosc/c-blosc2
120
GIT_TAG main # latest commit in main
121
- GIT_SHALLOW True
+ GIT_SHALLOW TRUE # fetch only the latest commit (only works with a branch in GIT_TAG)
122
+ # in case you want to use a local copy of c-blosc2 for development, uncomment the line below
123
+ # SOURCE_DIR "/Users/faltet/blosc/c-blosc2"
124
)
125
FetchContent_MakeAvailable(blosc2)
126
include_directories("${blosc2_SOURCE_DIR}/include")
0 commit comments