Best way to build Visual Studio project (with Qt Vs Tools) from command line
-
I have many VS projects, which depend on Qt. I want to automate their building process. Recently I have been using this command to achieve this (after calling proper vcvars64.bat, adding qt's /bin directory to path and setting QTDIR and QMAKESPEC environment variables) :
msbuild D:\some_project\some_project.sln /p:Configuration=Release;Platform=x64 /m /clp:ShowTimestamp /nologoBut this command doesn't work with last Qt VS Tools update. Have I missed something?
I have tried to search solution for this, but in all threads people suggest commands for building projects with .pro file, which does not appear in my projects.