8000 Update submodules to 4.10.0-pre for testing. by asmorkalov · Pull Request #990 · opencv/opencv-python · GitHub
[go: up one dir, main page]

Skip to content

Update submodules to 4.10.0-pre for testing. #990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jun 3, 2024
Prev Previous commit
Next Next commit
Add OrbbecSDK library to package for MacOS ARM. It's aways enabled du…
…ring library build.
  • Loading branch information
asmorkalov committed May 31, 2024
commit 882af5b499e0e5a17523962ee175c98d75e6e643
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ def main():
else []
)
+
(
[r"lib/libOrbbecSDK\.\d\.\d\.\d.dylib"]
if os.name == "Darwin" and platform.machine() == "ARM64"
else []
)
+
# In Windows, in python/X.Y/<arch>/; in Linux, in just python/X.Y/.
# Naming conventions vary so widely between versions and OSes
# had to give up on checking them.
Expand Down
0