2019-12-26 03:07 AM
Hi all,
i want insert in the project my directory , for organize the code ..
The problem is that not compile, because don't recognize the correct path.
I think that all set is correct, Set in Paths Symbols the new path
the only way is to insert the complete path, but this is inconvenient because it cannot be carried on another pc. how should I go to give the correct path to the new directories that I am going to insert?
Also I would like to add other folders within my new folder "" AppProgetto ", in order to carry all my work quickly and easily.
Thanks
2019-12-26 05:04 AM
Solved:
#include "..\..\AppProgetto/esecuzioneMain.h"
is need to decrease two directory-
2019-12-26 11:15 PM
Confused with Eclipse? :)
Source folders is where you specify additional folders containing C files.
Folders containing .h files are specified in Includes.
Note that all relative paths are relative to the build directory which usually named as the configuration, in your case, "Debug".
This adds one level, so to compensate and get to Test_LFTX you need two steps up.
The best practice is to specify the paths relative to the directory containing .project and .cproject.
Try to add this:
${ProjDirPath}/AppProgetto