ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The export in your manifest file should be:
<export>
<cpp cflags="-I${prefix}/include" lflags="-L{prefix}/lib -ltest_utility"/>
</export>
This will add your library to the list of libraries to link against.
2 | No.2 Revision |
The export in your manifest file should be:
<export>
<cpp cflags="-I${prefix}/include" lflags="-L{prefix}/lib lflags="-L${prefix}/lib -ltest_utility"/>
</export>
This will add your library to the list of libraries to link against.
Edit: It looks like you have a typo in your manifest export, a ${
was missing after -L. Make sure that it looks exactly as my code above.
3 | No.3 Revision |
The export in your manifest file should be:
<export>
<cpp cflags="-I${prefix}/include" lflags="-L${prefix}/lib -ltest_utility"/>
</export>
This will add your library to the list of libraries to link against.
Edit: It looks like you have a typo in your manifest export, a
was missing after -L. Make sure that it looks exactly as my code above.${{
4 | No.4 Revision |
The export in your manifest file should be:
<export>
<cpp cflags="-I${prefix}/include" lflags="-L${prefix}/lib -ltest_utility"/>
</export>
This will add your library to the list of libraries to link against.
Edit: It looks like you have a typo in your manifest export, a {
was is missing after -L. Make sure that it looks exactly as my code above.