0562892b35
TOML library for C++ Features * Supports the latest TOML release (v1.0.0), plus optional support for some unreleased TOML features * Supports serializing to JSON * Proper UTF-8 handling (incl. BOM) * C++17 (plus some C++20 features where available, e.g. experimental support for char8_t strings) * Header-only (optional!) * Doesn't require RTTI * Works with or without exceptions
15 lines
413 B
Makefile
15 lines
413 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2021/12/09 16:28:33 wiz Exp $
|
|
|
|
BUILDLINK_TREE+= tomlplusplus
|
|
|
|
.if !defined(TOMLPLUSPLUS_BUILDLINK3_MK)
|
|
TOMLPLUSPLUS_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.tomlplusplus+= tomlplusplus>=2.5.0
|
|
BUILDLINK_PKGSRCDIR.tomlplusplus?= ../../devel/tomlplusplus
|
|
|
|
# header-only library
|
|
BUILDLINK_DEPMETHOD.tomlplusplus?= build
|
|
.endif # TOMLPLUSPLUS_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -tomlplusplus
|