2c3f47a727
has become very trigger-happy with libc++ 9.0.0. It does not help that gcc's implementation of this warning is even more trigger-happy, in the sense that it already warns on the declaration itself, not when you are using it. This is very annoying with our use of -Wsystem-headers. That should really be disabled for gcc.
15 lines
320 B
Makefile
15 lines
320 B
Makefile
# $FreeBSD$
|
|
|
|
.include <googletest.test.inc.mk>
|
|
|
|
GTEST_DIR= ${SRCTOP}/contrib/googletest
|
|
GOOGLEMOCK_SRCROOT= ${GTEST_DIR}/googlemock
|
|
GOOGLETEST_SRCROOT= ${GTEST_DIR}/googletest
|
|
|
|
CXXFLAGS+= ${GTESTS_FLAGS}
|
|
|
|
# Silence warnings about usage of deprecated std::auto_ptr
|
|
CXXWARNFLAGS+= -Wno-deprecated-declarations
|
|
|
|
WARNS?= 6
|