aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/CMakeLists.txt
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-13 16:00:33 -0400
committerLioncash <mathew1800@gmail.com>2020-10-13 16:36:58 -0400
commit9f9b64d280d50b39c92e8e12c6f45ef78a72b4ea (patch)
treed1a143eb839744bc1515700c861ec7e5d04d130e /src/audio_core/CMakeLists.txt
parentc5b3c8d06bcfa343b2cecbfc60b3530b306ebe88 (diff)
audio_core/CMakeLists: Make warnings consistent with core
Normalizes the warnings shared between audio_core and core.
Diffstat (limited to 'src/audio_core/CMakeLists.txt')
-rw-r--r--src/audio_core/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt
index 6a7075f73..54940a034 100644
--- a/src/audio_core/CMakeLists.txt
+++ b/src/audio_core/CMakeLists.txt
@@ -46,10 +46,13 @@ create_target_directory_groups(audio_core)
if (NOT MSVC)
target_compile_options(audio_core PRIVATE
+ -Werror=conversion
-Werror=ignored-qualifiers
-Werror=implicit-fallthrough
-Werror=reorder
-Werror=sign-compare
+ -Werror=unused-but-set-parameter
+ -Werror=unused-but-set-variable
-Werror=unused-variable
)
endif()