-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
110 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Build icub-models from source | ||
|
||
To install the icub-models, execute the following commands from within the ``icub-models`` folder: | ||
|
||
|
||
```sh | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_INSTALL_PREFIX=<prefix> -DCMAKE_BUILD_TYPE=Release -DICUB_MODELS_USES_PYTHON:BOOL=ON .. | ||
cmake --build . --config Release --target install | ||
``` | ||
|
||
Once the models are installed into a given prefix, edit the env variables as follows to ensure that they can be found. | ||
|
||
```sh | ||
export YARP_DATA_DIRS=${YARP_DATA_DIRS}:<prefix>/share/iCub | ||
export ROS_PACKAGE_PATH=${ROS_PACKAGE_PATH}:<prefix>/share | ||
export AMENT_PREFIX_PATH=${AMENT_PREFIX_PATH}:<prefix> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters