Qmake and ROS project
I need to run ros code in my existing qmake qt project, without cmake/catkin_make.
All I need is to add relevant paths/libraries into my .pro file to run a ros publisher/subscriber.
I have tried INCLUDEPATH to the roscpp and rospy folder, and also tried as LIBS.
I get 'undefined reference to' for any ros code. I have also used #include "ros/ros.h"
Does anyone have information on how to use ros code in a QMAKE project?