I get errors building my project in visual studio due to some source filenames overlapping in different folders, e.g. (Source\Folder1\Test.cpp and Source\Folder2\Test.cpp)
This fails because all object files are output to a flat directory named after the input source code file here:
At the moment every time I resave the project from the Projucer I have to change this “ObjectFileName” property manually in visual studio from "$(IntDir)\\" to "$(IntDir)%(RelativeDir)" to disambiguate the generated object files.
I’d like to avoid having to introduce custom builds of the projucer to my project, and unless there’s a way I’ve not spotted it doesn’t seem possible to change/override with the current exporter options.
Would it be possible to update the value in Projucer as above (or expose it as an exporter option)?