Skip to content
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

Cleanup Python snippet required to run Python bindings on Windows #1723

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion doc/cmake-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,12 @@ Furthermore, due to Python ignoring the directories in `PATH`, before running py

~~~python
import os
os.add_dll_directory(os.path.join(os.environ['ROBOTOLOGY_SUPERBUILD_INSTALL_PREFIX'], 'bin'))
import platform

if platform.system() == "Windows":
traversaro marked this conversation as resolved.
Show resolved Hide resolved
superbuild_dll_path = os.path.join(os.environ.get('ROBOTOLOGY_SUPERBUILD_INSTALL_PREFIX',""), 'bin')
if (os.exists(superbuild_dll_path)):
os.add_dll_directory(superbuild_dll_path)
~~~

see https://github.com/robotology/robotology-superbuild/issues/1268 for more details.
Expand Down
Loading