Is it possible to add an include path on a per file basis?
I have some files (lets call them Files1) in my project that need to not include path "ABC", because of name conflicts that will occur if they do this.
Then I have some files (lets call them Files2) that should include headers from path "ABC" and I would like to add the path "ABC" to the include path of Files2, without adding it to the include path of Files1.
Is this possible or do I need to rename the conflicting header files that I want to include?