admin管理员组文章数量:1345016
I'm working on a ROS2 (Humble) package called signal_pkg inside my workspace:
~/Dev/Projekte/ros2/rosmaster_ws/src/signal_pkg/
It contains two C++ nodes:
normal_pub.cpp (publisher)
blinker_sub.cpp (subscriber)
My structure looks like this:
rosmaster_ws/
|-src/
└── blinker_pkg/
├── CMakeLists.txt
├── package.xml
└── src/
├── normal_pub.cpp
└── blinker_sub.cpp
Github link to the code:
Both CMakeLists.txt and package.xml use the name signal_pkg.
What works:
colcon build finishes successfully
The executables normal_pub and blinker_sub appear in:
install/blinker_pkg/lib/blinker_pkg/
package.xml is installed correctly in:
install/blinker_pkg/share/blinker_pkg/package.xml
Additional (possibly related) build warning:
During every build I see this warning but 2just in this WS:
CMake Warning:
Manually-specified variables were not used by the project:
CATKIN_INSTALL_INTO_PREFIX_ROOT
I'm not using Catkin, but it still appears. I'm not sure where this is coming from. I never used ros1.
What doesn’t work:
Even after source install/setup.bash, running:
ros2 pkg list | grep blinker_pkg
returns nothing, and:
ros2 run blinker_pkg blinker_sub
returns:
Package 'blinker_pkg' not found
What am i missing?
本文标签: colconIssues BuildingRunning ROS2 PKG in cStack Overflow
版权声明:本文标题:colcon - Issues BuildingRunning ROS2 PKG in c++ - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778718a2537456.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论