adeadf9db8
mdds 1.0.0 * all * introduced API versioning to ease parallel installation of API incompatible versions. Version 1.0.0 will have an API versoin of 1.0. * C++11 is now a hard requirement. * added API documentation via Doxygen, Sphinx and Breathe. * mixed_type_matrix * officially removed for good in favor of multi_type_matrix. * multi_type_vector * added memory usage reduction by conditionally shrinking the capacity of the underlying vector containers. * added slight performance gain by revising block adjustment policy during splitting of blocks. * sorted_string_map * fixed a bug where a non-matching key was incorrectly returned as a matching key.
16 lines
391 B
Makefile
16 lines
391 B
Makefile
# $NetBSD: buildlink3.mk,v 1.4 2016/02/13 08:40:22 wiz Exp $
|
|
|
|
BUILDLINK_TREE+= mdds
|
|
|
|
.if !defined(MDDS_BUILDLINK3_MK)
|
|
MDDS_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.mdds+= mdds>=1.0.0
|
|
BUILDLINK_PKGSRCDIR.mdds?= ../../devel/mdds
|
|
# only contains header files
|
|
BUILDLINK_DEPMETHOD.mdds?= build
|
|
|
|
.include "../../devel/boost-headers/buildlink3.mk"
|
|
.endif # MDDS_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -mdds
|