Skip to content

Commit

Permalink
Elevate warnigns to errors on gcc and clang (#110)
Browse files Browse the repository at this point in the history
Elevate warnigns to error on gcc and clang.
This sets our error level pretty high. CI will be an important
part of this strategy working.
  • Loading branch information
baconpaul authored and defiantnerd committed Sep 9, 2023
1 parent fcaf1c6 commit 74af3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/enable_sdks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ function(target_add_vst3_wrapper)
)

if(CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU")
target_compile_options(${V3_TARGET}-clap-wrapper-vst3-lib PRIVATE -Wall -Wextra -Wno-unused-parameter -Wpedantic)
target_compile_options(${V3_TARGET}-clap-wrapper-vst3-lib PRIVATE -Wall -Wextra -Wno-unused-parameter -Wpedantic -Werror)
endif()
if (APPLE)
target_link_libraries(${V3_TARGET}-clap-wrapper-vst3-lib PUBLIC macos_filesystem_support)
Expand Down

0 comments on commit 74af3db

Please sign in to comment.