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.
1 parent d1dc237 commit 03f8387Copy full SHA for 03f8387
.github/workflows/basic.yml
@@ -343,3 +343,4 @@ jobs:
343
--build-dir ${{env.BUILD_DIR}}
344
--install-dir ${{env.INSTL_DIR}}
345
--build-type ${{env.BUILD_TYPE}}
346
+ --shared-library
test/test_installation.py
@@ -60,10 +60,14 @@ def _create_match_list(self) -> List[str]:
60
if platform.system() == "Windows":
61
lib_ext_static = "lib"
62
lib_ext_shared = "lib"
63
- else:
+ elif platform.system() == "Linux":
64
lib_ext_static = "a"
65
lib_ext_shared = "so"
66
lib_prefix = "lib"
67
+ else: # MacOS
68
+ lib_ext_static = "a"
69
+ lib_ext_shared = "dylib"
70
+ lib_prefix = "lib"
71
72
bin = []
73
if platform.system() == "Windows" and self.shared_library:
0 commit comments