mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 10:42:45 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
20 lines
505 B
Makefile
20 lines
505 B
Makefile
TESTSDIR= ${TESTSBASE}/lib/libdevdctl
|
|
|
|
.PATH: ${.CURDIR:H}
|
|
|
|
PLAIN_TESTS_CXX= libdevdctl_unittest
|
|
|
|
SRCS.libdevdctl_unittest+= event_factory.cc \
|
|
libdevdctl_unittest.cc \
|
|
event.cc exception.cc \
|
|
guid.cc
|
|
CFLAGS.libdevdctl_unittest+= -I ${LOCALBASE}/include -D_THREAD_SAFE -pthread
|
|
DPADD.libdevdctl_unittest+= ${LIBDEVDCTL}
|
|
LDADD.libdevdctl_unittest+= -L ${LOCALBASE}/lib -D_THREAD_SAFE -pthread -lgtest -lgtest_main
|
|
|
|
# Googletest options
|
|
LOCALBASE?= /usr/local
|
|
|
|
WARNS?= 3
|
|
.include <bsd.test.mk>
|