'Qt Visual Studio Addin shadow build
I have a Qt project (.pro) and I can successfully open it in VS2010 using Qt Visual Studio Addin. It works but it makes a huge mess in my source directory. Is it possible to configure Addin, so it will generate VS project files (*.sln, *.sdf, *.vcxproj, *.vcxproj.filters, *.vcxproj.user, debug/*, release/*) in separate "build" directory?
Solution 1:[1]
It is stupid simple with Qt5.
mkdir build
cd build
qmake -r -tp vc ../my-project/MyProject.pro
Then you will get the generated sln files and the same directory structure as the source directory.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | W.Perrin |
