blob: 21c82567c5ec10dc47bf3a7d88acd6d1767f8bf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: options.mk,v 1.1.1.1 2011/10/05 22:15:49 ryoon Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.openbabel
PKG_SUPPORTED_OPTIONS= wx-gui
PKG_SUGGESTED_OPTIONS=
PLIST_VARS+= wx-gui
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mwx-gui)
. include "../../x11/wxGTK28/buildlink3.mk"
CMAKE_ARGS+= -DBUILD_GUI=ON
PLIST.wx-gui= yes
.else
CMAKE_ARGS+= -DBUILD_GUI=OFF
.endif
|