Under windows, qmake creates two Makefiles: Makefile.Release and Makefile.Debug. The latter is the default one and it compiles application with debugging symbols. To compile your application in "release" mode (i.e. optimized and without debugging information), you must run "make -f Makefile.Release".Originally Posted by raphaelf
You can switch that feature off by adding:
to your .pro file.Qt Code:
CONFIG -= debug_and_release CONFIG += release # or debugTo copy to clipboard, switch view to plain text mode
Bookmarks