pkgsrc/multimedia/sfml/options.mk
plunky 262e48de92 Added SFML-2.5.1 from pkgsrc-wip
SFML is a free multimedia C++ API that provides you low and high level access to
graphics, input, audio, etc.

This package contains the C++ language bindings of SFML.
2020-05-21 08:42:00 +00:00

19 lines
388 B
Makefile

# $NetBSD: options.mk,v 1.1 2020/05/21 08:42:00 plunky Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.sfml
PKG_SUPPORTED_OPTIONS= debug static
PKG_SUGGESTED_OPTIONS= # blank
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
MAKE_ENV+= DEBUGBUILD=yes
.else
MAKE_ENV+= DEBUGBUILD=no
.endif
.if !empty(PKG_OPTIONS:Mstatic)
MAKE_ENV+= STATIC=yes
.else
MAKE_ENV+= STATIC=no
.endif