blob: b9d1ab8639e6fd303f7ea7bc9c6120eb810501ba [file] [log] [blame]
Brian Silverman8fce7482020-01-05 13:18:21 -08001macro(wpilib_target_warnings target)
2 if(NOT MSVC)
Austin Schuh75263e32022-02-22 18:05:32 -08003 target_compile_options(${target} PRIVATE -Wall -pedantic -Wextra -Werror -Wno-unused-parameter -Wno-error=deprecated-declarations ${WPILIB_TARGET_WARNINGS})
Brian Silverman8fce7482020-01-05 13:18:21 -08004 else()
Austin Schuh75263e32022-02-22 18:05:32 -08005 target_compile_options(${target} PRIVATE /wd4146 /wd4244 /wd4251 /wd4267 /wd4996 /WX ${WPILIB_TARGET_WARNINGS})
Brian Silverman8fce7482020-01-05 13:18:21 -08006 endif()
7endmacro()