mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 21:55:42 +00:00
15 lines
342 B
Python
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"]
|