Browse Source

chore: silence unnecessary compiler output

Also show as many warnings as possible.
reviewable/pr3783/r2
Zetok Zalbavar 9 years ago
parent
commit
e19686d3d4
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 6
      qtox.pro

6
qtox.pro

@ -38,9 +38,13 @@ FORMS += \ @@ -38,9 +38,13 @@ FORMS += \
src/widget/about/aboutuser.ui
CONFIG += c++11
CONFIG += warn_on exceptions_off rtti_off
CONFIG += link_pkgconfig
# undocumented, but just works
CONFIG += silent
QMAKE_CXXFLAGS += -fno-exceptions -fno-rtti
# needed, since `rtti_off` doesn't work
QMAKE_CXXFLAGS += -fno-rtti
QMAKE_RESOURCE_FLAGS += -compress 9 -threshold 0
# Rules for creating/updating {ts|qm}-files

Loading…
Cancel
Save