cmake install of Qt build does not install debug artifacts
-
This might be a naive question. I needed to build Qt 6.2.4 for desktop 32-bit since the distributions are strictly 64-bit now. My configure.bat call used
-debug-and-release
.After building, the build folder contained debug and release versions of all the artifacts. When I ran the
cmake --install .
step, only the release artifacts were installed.What would be the right way to install both?
-
Having just come across this specific problem, it should be mentioned in the documentation here:
https://doc.qt.io/qt-6/windows-building.html
And if there's a cmake command line equivalent, then definitely here where the "-debug-and-release" is called out.
-