- The auto-generated code produces a lot of warnings from Clang 8; this obscures the more meaningful warnings from actual Calamares code, so tone the warnings down. - For Clang, set CALAMARES_MOC_OPTIONS. - Add convenience CMake function for automoccing. It applies the options as needed to a given target.
5 lines
131 B
C
5 lines
131 B
C
#ifdef __clang__
|
|
#pragma clang diagnostic ignored "-Wextra-semi-stmt"
|
|
#pragma clang diagnostic ignored "-Wredundant-parens"
|
|
#endif
|