Questions tagged [add-dependencies]
The add-dependencies tag has no summary.
16 questions
0 votes
1 answer
27 views
When to use the dependency EXPORTED_TARGETS vs generate_messages_cpp
Let's suppose pkg1 creates new services, messages, and actions. If I want a cpp ROS node from within this pkg1 to ensure that the messages, services, and actions are all built before the cpp file is ...
0 votes
1 answer
276 views
Adding a custom ROS package as dependency to another ROS package
I am new to ROS so apologies if it is obvious. I have multiple ROS packages and currently I use them by linking them to my catkin workspace using symbolic links. What I want to do now is use one ...
0 votes
1 answer
78 views
rosbuild and roslib are non existent packages and rosdep cant find (missing resource)
I'm new to linux and ROS. if i've left out any key info needed to fix the issue, please let me know I'm using debian 11 (Bullseye). I installed ROS through the following package deb file : https://...
0 votes
1 answer
64 views
Adding dependencies to a package
Does the catkin_make process automatically download packages identified as dependencies ??? I have a package which makes use of the rosbridge package. I defined the ...
0 votes
1 answer
16 views
Where I can find a list of dependencies?
I don't know where find or what dependencies to use when I will create a package dependencies. It's possible create a depends? For example, in the Tutorial I see rospy, roscpp and std_msgs. Where I ...
1 vote
1 answer
225 views
build_depend vs build_export_depend vs exec_depend in ROS with Python?
In the context of using ROS with Python, how would the build_depend, build_export_depend and ...
0 votes
1 answer
123 views
Package installation, rosdep cant find installation
Hi, i want to install multiple packages for using a robot with ROS and have to build them out of source. I created a worspace and cloned all repositories into the ...
0 votes
1 answer
31 views
Adding a cpp file to include in executable file
New to CMake and trying to figure out how to include a cpp file that an executable file links to. Trying to program Object Oriented. I want to add a robot.cpp as a class file, so that i will be able ...
0 votes
1 answer
18 views
Update package depencies
Hi ! I was reading this tutorial on how to add dependencies to a package, and was wondering why one would "only" need to upgrade the package.xml and not the CMakeLists.txt, where the ...
0 votes
1 answer
15 views
Unable to build dependancy with package in stack
Hi and thanks for a great forum! This is my first question, hope I have the correct tags and so forth. So, I am trying to build a launch package connecting several packages. Building dependancies and ...
0 votes
1 answer
33 views
Undefined reference to ros::init
Hi! When I am trying to catkin_make, I am getting this error: ...
0 votes
1 answer
51 views
Undefined reference to ros::init
Most of the similar questions pointed to the package's CMakeList.txt . As far as I can tell, it's as it should be: ...
0 votes
1 answer
14 views
Install Indigo on ubuntu 15.04 [vivid]
I am trying to install ROS Indigo on Ubuntu 15.04 from source. After trying to install dependencies in the catkin workspace I'm getting the following error message: ...
0 votes
1 answer
140 views
How to solve ‘add_dependencies Adding dependency to non-existent target:...’
Ubuntu: 12.04 ROS: Hydro I learn to write .cfg file according to WiKilink text After I finished it and ran catkin_make, error occurred. ...
0 votes
1 answer
24 views
Defining a dependency for (a Python) add_rostest call?
I have a unit test written in Python that depends on a package that generates messages. If I run catkin_make run_tests --only-pkg-with-deps my_package, the test ...