OK, thanks, I didn't understand the significance of the naming. Guess I was expecting it
to be more VS-like with different directories for debug and release.
I'm trying to build step-1. In VS. I change the configuration to Release and also manually
changed the deal library from .g to just deal_II.lib. But when I build, I get many link errors
like the following:
2>------ Build started: Project: step-1, Configuration: Release x64 ------
2>deal_II.lib(exceptions.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in step-1.obj
which looks to me like I'm still compiling step-1.cc in debug mode but trying to link to a release library. step1.obj is in
C:\temp\dealii-8.5.0\examples\step-1\step-1.dir\Release
Very strange.
I'll try to investigate further but am not sure where to go from here.
Bill