e02d06d91c
Google's framework for writing C++ tests on a variety of platforms (Linux, Mac OS X, Windows, Cygwin, Windows CE, and Symbian). Based on the xUnit architecture. Supports automatic test discovery, a rich set of assertions, user-defined assertions, death tests, fatal and non-fatal failures, value- and type-parameterized tests, various options for running the tests, and XML test report generation. From MAINTAINER Vincent Auclair (thanks!) @ ACSEL
33 lines
645 B
Makefile
33 lines
645 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/12/31 11:21:13 landry Exp $
|
|
|
|
COMMENT = C++ unit test framework
|
|
|
|
DISTNAME = gtest-1.4.0
|
|
|
|
SHARED_LIBS += gtest 0.0 # .0.0
|
|
SHARED_LIBS += gtest_main 0.0 # .0.0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://code.google.com/p/googletest/
|
|
|
|
MAINTAINER = Vincent Auclair <auclair.vincent@gmail.com>
|
|
|
|
# New BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://googletest.googlecode.com/files/
|
|
|
|
SEPARATE_BUILD = simple
|
|
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED}
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|