Details
Description
Visual Studio 2012 and Visual Studio 2013 (and I suppose also VS2010) warns during compile that the intermediate directory does not end with a trainling slash in projects imported from .pro files.
In the Qt-Addin the following changes would be required to fix this:
Qt4VS2003\ProjectImporter.cs: Line 348+
#if (VS2010 || VS2012 || VS2013)
cfg.IntermediateDirectory = @"$(Platform)\$(Configuration)";
should be changed to
#if (VS2010 || VS2012 || VS2013)
cfg.IntermediateDirectory = @"$(Platform)\$(Configuration)\";