I'm working on a Linux distribution using Eclipse
on a C++ project
. We're trying to port everything over from a Windows environment (Visual Studio) to a Linux environment (Eclipse) and are having trouble. We have a library that we need, but after importing is giving us a few errors.
For example, in one of our CPP files, we include a class that we need on top.
~~~~~~~~~~.h: No such file or directory
However, I can Ctrl+Shift+R (Open Resource) and type in the exact same name, and Eclipse can find and view that file.
To include this library, we went to:
Project Properties -> C/C++ General -> Paths and Symbols -> Source Location
and we added the folder there. Is there any reason why this isn't working correctly? Do we need to link it anywhere else?