0a3113f50b
RTTR stands for Run Time Type Reflection. It describes the ability of a computer program to introspect and modify an object at runtime. It is also the name of the library itself, which is written in C++ and released as open source library. The goal of this project is to provide an easy and intuitive way to use reflection in C++.
12 lines
279 B
Makefile
12 lines
279 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2019/11/27 21:23:53 markd Exp $
|
|
|
|
BUILDLINK_TREE+= rttr
|
|
|
|
.if !defined(RTTR_BUILDLINK3_MK)
|
|
RTTR_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.rttr+= rttr>=0.9.6
|
|
BUILDLINK_PKGSRCDIR.rttr?= ../../devel/rttr
|
|
.endif # RTTR_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -rttr
|