Hi there,
does anyone know a solution how to provide automatically the paths for includes and requires?
Example:
You have a rootdir, and let's say two subdirs 'include' and 'help'. If you want to include the files in include from the root dir, you have to specify include ('./include/file'); and if you want to include files from help, you have to specify include ('../include/file'). How can I generate this prefix dir '../include/' or './include' respectively all other combinations automatically (an Include may contain another include)?
Is there a solution?
thx and cu