191ad3f718
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
12 lines
302 B
Makefile
12 lines
302 B
Makefile
# $NetBSD: options.mk,v 1.2 2019/11/03 17:04:26 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.raspberrypi-userland
|
|
PKG_SUPPORTED_OPTIONS= debug
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Debug
|
|
.else
|
|
CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
|
|
.endif
|