I am new in Eclipse development. I am trying to migrate existing c++ project from visual studio to eclipse. Files I want to include files that are distributed in different folders in framework.
framework/common - contain common files
framework/extra - contains extra files and so on.
Eclipse project is located in:
framework/projects/rtree/
in main.cpp I need to include different files from framework but i am not able to use same relative paths as in visual studio.
In project properties i have already set include folder to contain all folder. In current state, i am able to include files with absolute path. I.E.
#include "/home/pavlos/framework/common/helpers/someclass.h"
But I need to be able to do this:
#include "common/helpers/someclass.h
#include "extra/someclass2.h
Because all files in this framework uses these relative paths. I cannot change them because they are common for more projects. Is it somehow possible to achieve this ?
Thank you in advance, Pavlos