From 73a908665d203503e37db21fbcb199e9b86ac78e Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 12 Jul 2017 09:24:11 -0400 Subject: [PATCH] Fix unused variables in release builds --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d1276f8b..5a9ca7d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,10 @@ if (CMAKE_COMPILER_IS_GNUCC) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wimplicit-fallthrough=0") endif() endif() +if (CMAKE_BUILD_TYPE MATCHES Release) + # Some variables are only used for assertions + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-variable") +endif() list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_CURRENT_SOURCE_DIR}/CMake