debugging - Does Qt offer a (guaranteed) debug definition? -
debugging - Does Qt offer a (guaranteed) debug definition? -
does know officially supported way include debug-build code in qt? example:
#ifdef qt_debug // #endif
basically q_assert more complex tests.
i can't seem find documentation says qt framework guarantees define debug macro. if there isn't, sensible unofficial way implement feature project wide?
qt defines qt_no_debug
release builds. otherwise qt_debug
defined.
of course of study free specify defines
in .pro files , scope them either debug
or release
.
debugging qt definition
Comments
Post a Comment