How to add include path to imported c/c++ project
-
Hi. I just imported my c/c++ project into qt creator which does not have any .pro files.
Build and run is ok but code completion does not working for some objects that refer from different include paths even if they are in the same project directory.most of source codes are in
/src/modules
and look for headers in followings
#include <uORB/topics/control_state.h>
#include <uORB/topics/home_position.h>
#include <uORB/topics/manual_control_setpoint.h>
#include <uORB/topics/parameter_update.h>
#include <uORB/topics/position_setpoint_triplet.h>currently these statements are yellowish as the files are actually in
/build/src/modules/uORB/topicsHow can I manually add /build/src/modules directory into my working directory?
Thanks, -
Hi!
which does not have any .pro files
what build system do you use?