3bc4b0c305
MessagePack is an efficient object serialization library, which are very compact and fast data format, with rich data structures compatible with JSON.
13 lines
315 B
Makefile
13 lines
315 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2011/04/06 13:01:30 obache Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.msgpack
|
|
PKG_SUPPORTED_OPTIONS= tests
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mtests)
|
|
BUILDLINK_DEPMETHOD.googletest+= build
|
|
.include "../../devel/googletest/buildlink3.mk"
|
|
TEST_TARGET= check
|
|
.endif
|