From b40e8809c5852bc032941c10b78954c2fa0a20f8 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Tue, 29 Oct 2024 16:15:42 +0100 Subject: [PATCH] Document that the setup script needs to be called before running the build --- README.md | 1 + doc/conda-forge.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index e922dffa7..270590ae5 100644 --- a/README.md +++ b/README.md @@ -179,6 +179,7 @@ cd robotology-superbuild mkdir build cd build ccmake ../ +source ./install/share/robotology-superbuild.sh make ``` You can configure the ccmake environment if you know you will use some particular set of software (put them in "ON"). diff --git a/doc/conda-forge.md b/doc/conda-forge.md index 140bc126f..532561544 100644 --- a/doc/conda-forge.md +++ b/doc/conda-forge.md @@ -220,6 +220,7 @@ cd robotology-superbuild mkdir build cd build cmake .. +source ./install/share/robotology-superbuild/setup.sh cmake --build . --config Release ~~~ @@ -229,6 +230,7 @@ cd robotology-superbuild mkdir build cd build cmake -G"Visual Studio 16 2019" .. +call .\install\share\robotology-superbuild\setup.bat cmake --build . --config Release ~~~