hello,

I'm using QMake to generate a Visual Studio project file on Windows.
I want my release build to include debugging information, which I can set manually in properties with:
C++/General/Debug Information Format -> Program Database
Linker/Debugging/Generate Debug Info -> Yes

However each time I change my project configuration and run QMake these properties have to be manually reset.
So, does there happen to be a QMake flag to generate a release binary with debugging information?

I know this question is quite petty because manually setting those properties is not too much trouble. Still, I would like to make my development pipeline as clean as possible.

thanks,
Richard