Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 2.81 KB

CppCompileWarning.md

File metadata and controls

49 lines (35 loc) · 2.81 KB

Warning emitted by the compiler, but does not prevent program execution. A compile error does prevent program execution.

Qt Creator How to add extra warnings in Qt Creator?

In the project file, add the following line:

QMAKE_CXXFLAGS += -Wextra

Qt Creator How to add the compile warnings of 'Effective C++' by Scott Meyers in Qt Creator?

In the project file, add the following line:

QMAKE_CXXFLAGS += -Weffc++

Qt Creator How to let compile warnings be treated like compile errors in Qt Creator?

In the project file, add the following line:

QMAKE_CXXFLAGS += -Werror