Quote Originally Posted by paranoid_android View Post
I get the application only in .\debug even if MakeFile.realease exists.
How can I do to get the release "version"?
For example by running:
make -f Makefile.Release
or you can add this to your .pro file:
CONFIG -= debug_and_release
CONFIG += release
This way your project will be always built in release mode.