Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
4.7.4
-
None
-
Windows 7 Professional x64, Visual Studio Professional 10, Qt 4.7.4 zipped source
-
712b1f400ec0a87e9d6c521c1d14548f7359f038
Description
When trying to compile Qt 4.7.4 from source using Visual Studio 2010 x64, the testcon.vcxproj under tools/activeqt/testcon has an error in it. The xml is invalid.
I found the problem to be:
The line created in the file is:
<Command>midl C:\CI\qt-everywhere-opensource-src-4.7.4-64/tools/activeqt/testcon/testcon.idl && move testcon.tlb $(TARGETDIR)</Command>
whereas it should be:
<Command>midl C:\CI\qt-everywhere-opensource-src-4.7.4-64/tools/activeqt/testcon/testcon.idl && move testcon.tlb $(TARGETDIR)</Command>
Note the ampersand (file is an XML file)
This causes VS to complain about invalid XML.