ros-visualization / python_qt_binding

http://wiki.ros.org/python_qt_binding
BSD 3-Clause "New" or "Revised" License
34 stars 54 forks source link

Convert cmake targets to plain libraries to fix linker error #68

Closed sloretz closed 4 years ago

sloretz commented 5 years ago

When ${PROJECT_NAME}_LIBRARIES contains an imported cmake target, this command will blindly add it to the Makefile with a -l option in front. This PR uses a catkin function to extract the library path from imported cmake targets before passing it to the command.

dirk-thomas commented 4 years ago

Thanks for the fix.