mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-27 06:59:46 -05:00
Fix unused variables in release builds
This commit is contained in:
parent
b08aa9fd35
commit
73a908665d
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue