diff options
author | bunnei <bunneidev@gmail.com> | 2020-10-20 20:59:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 20:59:37 -0700 |
commit | 1fc61d09d3f03c8a0c502e9ec41d68e3ee1eb46c (patch) | |
tree | 46567b067e4ebd7bb03e270bf85d461a3be04694 | |
parent | e408bd3b7ce0f584475da88a770319bccca780b4 (diff) | |
parent | 678d012c2c3ce7b6bac136576d15f23b2d4b05a8 (diff) |
Merge pull request #4811 from lioncash/warn-video
video_core: Conditially activate relevant compiler warnings
-rw-r--r-- | src/video_core/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 3df54816d0..77ebac19fc 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -278,7 +278,9 @@ else() -Wno-error=sign-conversion -Werror=switch -Werror=unused-variable - -Werror=unused-but-set-variable - -Werror=class-memaccess + + $<$<CXX_COMPILER_ID:GNU>:-Werror=class-memaccess> + $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter> + $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> ) endif() |