Skip to content

Commit

Permalink
Some addtional explanation. Also, retry with latest python-blosc2 2.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Apr 4, 2024
1 parent 7bee101 commit d720d1a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ set(CMAKE_FIND_FRAMEWORK NEVER)
add_subdirectory(grok)

# Build libblosc2_grok.so
# We will be using SHARED or MODULE depending on the platform.
# Ideally, we would like to use SHARED for all platforms
# because that allows to link with C++ code in the shared library.
# Unfortunately, not every platform supports SHARED.
if (UNIX AND NOT APPLE) # Linux
add_library(blosc2_grok SHARED blosc2_grok.cpp)
elseif (APPLE)
Expand Down

0 comments on commit d720d1a

Please sign in to comment.