cmake install of Qt build does not install debug artifacts
Solved
General and Desktop
-
wrote on 26 Sept 2022, 21:33 last edited by
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?
-
wrote on 26 Sept 2022, 22:57 last edited by
I was able to figure it out. I had to explicitly ask for the Debug artifacts to be installed and what worked for me was:
ninja install:Debug
.
1/2