Relative IncludePath
Posted: Sun Oct 07, 2007 9:44 am
My wish is that IncludePath (or a new command) would be interpreted relative to the owner file.
Without that, all Path need to be absolute and reassigned each time.
Here an example of my current problem:
In this example, File3.pbi will not be found because by including File2.pbi <Path1> was removed by <Path2>.
It is easy to declare all immediate needed files for a given file, it is difficult to check and to give a sense to all dependencies.
Without that, all Path need to be absolute and reassigned each time.
Here an example of my current problem:
Code: Select all
File1:
IncludePath <Path1>
IncludeFile "File2.pbi"
IncludeFile "File3.pbi"
File2:
IncludePath <Path2>
IncludeFile "File4.pbi"
It is easy to declare all immediate needed files for a given file, it is difficult to check and to give a sense to all dependencies.