-
I am currently trying the "Compiling a YARP hello world program" available on the following link . After running
While I understand that I have to prepend "YARP" to CMAKE_PREFIX_PATH, I don't know how to find the path to YARP installation prefix. As suggested in the tutorial, I have the following directory structure: I am running Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
How did you build ⬜ Just build w/o installIf you didn't install it (you just typed Add the installation prefix of "YARP" to CMAKE_PREFIX_PATH or set
"YARP_DIR" to a directory containing one of the above files. If "YARP"
provides a separate development package or SDK, be sure it has been
installed. ⚪ Suggestion 1 (
|
Beta Was this translation helpful? Give feedback.
How did you build
YARP
?⬜ Just build w/o install
If you didn't install it (you just typed
make
), then you ought to follow one of the proposed suggestions:⚪ Suggestion 1 (
CMAKE_PREFIX_PATH
)where
/path_to_yarp_build_dir
shall point to the directory where you builtYARP
.Alternatively, you could export
CMAKE_PREFIX_PATH
as an env variable.⚪ Suggestion 2 (
YARP_DIR
)Put the line below into your
.b…