Is there a simple way to specify the project directory (where the uvprojx file is located) in the include paths?
Currently, if I want to specify the project directory, it is done like this: "..\<ProjectDirectoryName>". How can I eliminate going up 1 directory and then going back in to the project directory by explicit folder name?
The reason I want to avoid specifying the project directory as described above is that I plan on having a header file located in the project directory that some other source files include. I don't want to have to change the Include Paths section for each project to match a different <ProjectDirectoryName> folder...
After some brief experimentation, it seems like ".\" works to specify the project directory.