Skip to content

Commit

Permalink
Apply suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Sep 25, 2024
1 parent 4b682ed commit a0ab067
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions doc/cmake-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,8 @@ Furthermore, due to Python ignoring the directories in `PATH`, before running py

~~~python
import os
import platform

if platform.system() == "Windows":
if os.name == "nt":
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)
Expand Down

0 comments on commit a0ab067

Please sign in to comment.