We want to use the custom messages defined in different package and we don't understand what will be the "your_program" part in the line we have to add in CMakeList.txt
We have a package named "ros_openpose" which contains a custom message "Frame.msg" that we want to use in another package "trans_ft" of the same workspace (catkin_ws)
ROS Tutorials suggest that we have to add to the following line in CMakeList.txt in trans_ft
add_dependencies(your_program ${catkin_EXPORTED_TARGETS})
Can some one please confirm what will be "your_program" part in our case?