blob: ae32a51f1c0c979a885ee47f06315c3cf34d4c6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: options.mk,v 1.1 2013/01/23 21:55:25 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.qcomicbook
PKG_SUPPORTED_OPTIONS= debug
PKG_SUGGESTED_OPTIONS+= # blank
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Debug
.endif
|