Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
1.2.2
-
Win7 64bit/Win8 and VS2012/VS2013
-
88a97be4019f0e2d7d5236ba6021cc8529f276d8
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)\";