From: Dmitry Marakasov Date: Mon, 1 Aug 2011 18:17:32 +0000 (+0400) Subject: Check whether -Wno-unused-but-set-variable is supported before using X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=318a730c459a8524d7030d261946c35815dd4b29;p=zefram%2Fminetest%2Fminetest_engine.git Check whether -Wno-unused-but-set-variable is supported before using it. It seems to only be available on recent (>=4.6) versions of gcc. --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ce53651b..5bdfc7ee 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -209,6 +209,8 @@ endif(BUILD_SERVER) # Set some optimizations and tweaks # +include(CheckCCompilerFlag) + if(MSVC) # Visual Studio @@ -236,7 +238,10 @@ else() endif() if(NOT APPLE) - set(WARNING_FLAGS "${WARNING_FLAGS} -Wno-unused-but-set-variable") + check_c_compiler_flag("-Wno-unused-but-set-variable" HAS_UNUSED_BUT_SET_VARIABLE_WARNING) + if(HAS_UNUSED_BUT_SET_VARIABLE_WARNING) + set(WARNING_FLAGS "${WARNING_FLAGS} -Wno-unused-but-set-variable") + endif(HAS_UNUSED_BUT_SET_VARIABLE_WARNING) endif() if(APPLE)