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 96f3844 + d1e8394 commit 59d1881Copy full SHA for 59d1881
1 file changed
CMakeLists.txt
@@ -116,7 +116,10 @@ else()
116
include(FetchContent)
117
FetchContent_Declare(blosc2
118
GIT_REPOSITORY https://github.com/Blosc/c-blosc2
119
- GIT_TAG 7fca7713fe77ab03ffbe31c30c3af5d7f0287bbc # latest commit in main
+ GIT_TAG main # latest commit in main
120
+ GIT_SHALLOW TRUE # fetch only the latest commit (only works with a branch in GIT_TAG)
121
+ # in case you want to use a local copy of c-blosc2 for development, uncomment the line below
122
+ # SOURCE_DIR "/Users/faltet/blosc/c-blosc2"
123
)
124
FetchContent_MakeAvailable(blosc2)
125
include_directories("${blosc2_SOURCE_DIR}/include")
0 commit comments