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 Sep 8, 2023
1 parent 244b156 commit c955b3e
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 c955b3e

Please sign in to comment.