2019-07-18 00:08:58 +02:00
|
|
|
# $NetBSD: options.mk,v 1.3 2019/07/17 22:08:58 nia Exp $
|
2017-08-18 12:16:11 +02:00
|
|
|
#
|
|
|
|
|
2017-08-15 12:57:35 +02:00
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.awesome
|
2019-07-18 00:08:58 +02:00
|
|
|
PKG_SUPPORTED_OPTIONS= dbus debug
|
2017-08-15 12:57:35 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
###
|
|
|
|
### DBus support
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mdbus)
|
|
|
|
CMAKE_ARGS+= -DWITH_DBUS=ON
|
|
|
|
. include "../../sysutils/dbus/buildlink3.mk"
|
|
|
|
.else
|
|
|
|
CMAKE_ARGS+= -DWITH_DBUS=OFF
|
|
|
|
.endif
|
|
|
|
|
|
|
|
###
|
|
|
|
### Debug support
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
|
|
. include "../../devel/libexecinfo/buildlink3.mk"
|
|
|
|
.endif
|