From ec735da5aa86aae43a650ccb8937c192852ede6b Mon Sep 17 00:00:00 2001 From: Giovanni Fregonese Date: Wed, 25 Sep 2024 14:01:30 +0200 Subject: [PATCH] Fix python dll snippet --- doc/cmake-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cmake-options.md b/doc/cmake-options.md index f951a47b5..3cb4d93f7 100644 --- a/doc/cmake-options.md +++ b/doc/cmake-options.md @@ -372,7 +372,7 @@ 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)) +os.add_dll_directory(os.path.join(os.environ['ROBOTOLOGY_SUPERBUILD_INSTALL_PREFIX'], 'bin')) ~~~ see https://github.com/robotology/robotology-superbuild/issues/1268 for more details.