Hi Faby,
> in clipper I have
> #include "..\myfile.def"
>
> in harbour I get
> Error F0029 Can't open #include file '..\myfile.def'
>
> I change to
> #include ".\myfile.def"
> and work fine but How I can to do for have a same line for clipper and
> harbour ?
But those are two different locations. Where is the file located in
relation to the working directory?
Harbour supports all kinds of path specifications like ...
#include "filename.ext" // Here
#include ".\filename.ext" // Also here
#include "..\filename.ext" // Parent directory
#include "..\parallelldirectory\filename.ext"
// as well as
#include "filename.ext" // Any other directory if
-i<p> // (where <p> is the path) or
-incpath=<p> // is specified in the .hbp
Regards,
Klas