The problem here is that I'am on a Windows XP computer and there is no access to this path under windows. The closest one can get is to map a drive letter to the M:\some_clearcase_view\ (the clearcase root in windows) but that would take me to the /subdir1/ level of the above path and not the "/clearcase_rootdir" that I want to get hold of...
Has anyone got any suggestions in how to solve the issue? Anything goes here.
Been thinking about if there are som preprocessor directive that states something like "#ignore path" to include-files and just uses the filename and the std paths specified in the environment and makefile
Are relative paths an option?
If they aren't, you could add "/clearcase_rootdir/some_vob/subdir1/subdir2/subdir3" to the include directories list in one system, and "<path to someFile>" in another. Then you just #include <someFile.h>
The makefiles would be a perfect place for this like any other system but for some unknown reason these guys want to hardcode the full absolute path in the headerfile itself so I need to find a way around it.