commit beca8a53fb45a66446492585c2d5a63c62300250 parent 507e505ed98aa14b34d45b0af0cff083be3eaa4d Author: Johannes Lorenz <johannes89@ist-einmalig.de> Date: Sat, 15 Oct 2016 22:12:35 +0200 Set -Wno-inconsistent-missing-override only for compilers supporting it. Diffstat:
M | src/CMakeLists.txt | | | 8 | +++++++- |
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt @@ -260,8 +260,14 @@ endif() add_definitions( -Wall -Wextra - -Wno-inconsistent-missing-override ) + +CHECK_CXX_COMPILER_FLAG(-Wno-inconsistent-missing-override + COMPILER_SUPPORTS_OVERRIDE) +if(COMPILER_SUPPORTS_OVERRIDE) + add_definitions(-Wno-inconsistent-missing-override) +endif() + if(NOT AVOID_ASM) message(STATUS "Compiling with x86 opcode support") add_definitions(-DASM_F2I_YES)