We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bee101 commit d720d1aCopy full SHA for d720d1a
src/CMakeLists.txt
@@ -35,6 +35,10 @@ set(CMAKE_FIND_FRAMEWORK NEVER)
35
add_subdirectory(grok)
36
37
# Build libblosc2_grok.so
38
+# We will be using SHARED or MODULE depending on the platform.
39
+# Ideally, we would like to use SHARED for all platforms
40
+# because that allows to link with C++ code in the shared library.
41
+# Unfortunately, not every platform supports SHARED.
42
if (UNIX AND NOT APPLE) # Linux
43
add_library(blosc2_grok SHARED blosc2_grok.cpp)
44
elseif (APPLE)
0 commit comments