Я получил файл vcproj от QMake (qmake -tp vc win32.pro), и когда я запускаю его с помощью msbuild (msbuild для VS 2010), я получаю следующую ошибку.
MSBUILD : error MSB4192: The project file ".\win32.vcproj" is in the ".vcproj" or ".dsp" file format
, which MSBuild cannot build directly. Please convert the project by opening it in the Visual Studio
IDE or running the conversion tool, or, for ".vcproj", use MSBuild to build the solution file conta
ining the project instead.
I 'Я хотел бы запустить инструмент преобразования для получения файла проекта VS2010.Что за инструмент для этого?
ДОБАВЛЕНО
Основываясь на ответе Хардида, я получил его.
qmake -project
qmake -tp vc win32.pro
devenv /Upgrade win32.vcproj
msbuild win32.vcxproj
Можно использовать nmake, что проще.
qmake -spec win32-msvc2008
nmake