-
Notifications
You must be signed in to change notification settings - Fork 2.5k
find_package(Python3) Development.Embed? #7468
Copy link
Copy link
Open
Labels
Description
Checklist
- I have searched for similar issues.
- For Python issues, I have tested with the latest development wheel.
- I have checked the release documentation and the latest documentation (for
mainbranch).
My Question
Open3D find_package(Python3) currently requires the Development component
Lines 319 to 320 in 03ed109
| find_package(Python3 3.6 | |
| COMPONENTS Interpreter Development) |
Since cmake 3.18.0+, Development can be split into Development.Module and Development.Embed
https://cmake.org/cmake/help/latest/module/FindPython3.html?highlight=Development.Module
Are Development.Embed artifacts (e.g., libpython.so) actually used by Open3D, or could find_package be narrowed to just Development.Module? Removing Development.Embed would let users build from source in environments such as a manylinux docker which does not include libpython.so by design.
Thanks!
Reactions are currently unavailable