Files

15 lines
342 B
Python

# Suppress -Wdeprecated-copy-with-dtor after -Wdeprecated due to protobuf 32.x warning
CXX_STANDARD = "c++23"
CXX_STANDARD_COPT = "--std=" + CXX_STANDARD
COPTS = [
CXX_STANDARD_COPT,
"-Werror",
"-Wall",
"-Wextra",
"-Wdeprecated",
"-Wno-deprecated-copy-with-dtor",
]
TEST_COPTS = COPTS + ["-Iexternal/gtest/include"]