icubmod and icubmoddev are NO longer generated #68
Replies: 9 comments
-
As @Tobias-Fischer correctly pointed out, it is also required to remove the following lines from the C++ code: YARP_DECLARE_DEVICES(icubmod)
YARP_REGISTER_DEVICES(icubmod) |
Beta Was this translation helpful? Give feedback.
-
@pattacini @mbrunettini can we increase the minor version number of icub-main such that we can cmake depend on the latest version of |
Beta Was this translation helpful? Give feedback.
-
Even the patch version was ok, thanks! |
Beta Was this translation helpful? Give feedback.
-
Semantically speaking, it was not a patch but a sort of change in the "interface", hence "minor" is more appropriate. |
Beta Was this translation helpful? Give feedback.
-
I was just scared since the minor version was not updated since 2010 : https://github.com/robotology/icub-main/tags . |
Beta Was this translation helpful? Give feedback.
-
Time has come to update it, then 😏 |
Beta Was this translation helpful? Give feedback.
-
Bit more details can also be found here: #33 (comment) |
Beta Was this translation helpful? Give feedback.
-
Thanks @jeljaik; I've updated the post. |
Beta Was this translation helpful? Give feedback.
-
Hi icubers,
Please take a note of this important announcement.
Since robotology/icub-main@ef3a6a6,
icubmod
library so as its related binaryicubmoddev
are NO longer generated during the compilation oficub-main
.Therefore, three consequences are given for code/packages depending on
icub-main
:icubmod
in theCMakeLists.txt
file needs to be removed. Such dependency was not required since long, due to the new dynamic plugins system.YARP_DECLARE_DEVICES(icubmod)
YARP_REGISTER_DEVICES(icubmod)
YARP_DECLARE_PLUGINS(icubmod)
YARP_REGISTER_PLUGINS(icubmod)
icubmoddev
(e.g. inxml
applications) need to be replaced with references toyarpdev
binary.See #33 for further details.
Beta Was this translation helpful? Give feedback.
All reactions