Skip to content

Commit

Permalink
build(c): suppress more noisy MSVC warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Mar 26, 2024
1 parent 6ca22c2 commit 1e8d155
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions c/cmake_modules/AdbcDefines.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ if(MSVC)
add_compile_definitions(_CRT_SECURE_NO_WARNINGS)
# Allow incomplete switch (since MSVC warns even if there's a default case)
add_compile_options(/wd4061)
add_compile_options(/wd4100)
add_compile_options(/wd4623)
add_compile_options(/wd4625)
add_compile_options(/wd4626)
add_compile_options(/wd4868)
add_compile_options(/wd4710)
add_compile_options(/wd4711)
Expand Down

0 comments on commit 1e8d155

Please sign in to comment.