From a5959e767e1fce78fa1876e8791667a377ac51f1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 1 Nov 2011 00:34:09 +0000 Subject: [PATCH] hopefully fix problem with cmake on osx (older gcc version) --- CMakeLists.txt | 2 ++ build_files/cmake/macros.cmake | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bcec149eda8..f421c2c9395 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1255,6 +1255,8 @@ if(CMAKE_COMPILER_IS_GNUCC) # flags to undo strict flags ADD_CHECK_C_COMPILER_FLAG(CC_REMOVE_STRICT_FLAGS C_WARN_NO_DEPRECATED_DECLARATIONS -Wno-deprecated-declarations) + ADD_CHECK_C_COMPILER_FLAG(CC_REMOVE_STRICT_FLAGS C_WARN_NO_UNUSED_PARAMETER -Wno-unused-parameter) + ADD_CHECK_C_COMPILER_FLAG(CC_REMOVE_STRICT_FLAGS C_WARN_NO_UNUSED_BUT_SET_VARIABLE -Wno-unused-but-set-variable) elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake index f767376d122..10f89797754 100644 --- a/build_files/cmake/macros.cmake +++ b/build_files/cmake/macros.cmake @@ -413,8 +413,7 @@ macro(remove_strict_flags) remove_cc_flag("-Werror") # negate flags implied by '-Wall' - add_cc_flag("-Wno-unused-parameter") - add_cc_flag("-Wno-unused-but-set-variable") + add_cc_flag("${CC_REMOVE_STRICT_FLAGS}") endif() if(MSVC)