b6fbe54c2d
* Convert to cmake build from scons Changelog: In this release: Cycles: Better Subsurface Scattering, GPU support for Smoke/Fire and Point Density. Grease pencil stroke sculpting and improved workflow. OpenVDB caching for smoke/volumetric simulations. Reworked library handling to manage missing and deleted datablocks. Redesigned progress bar. Edit mode boolean tool, better decimate modifier. Improved extruding and weight painting tools for sculpting/painting. Support for Windows XP and the SCons build system was removed. And: 100s of bug fixes and other improvements!
37 lines
950 B
Makefile
37 lines
950 B
Makefile
# $NetBSD: options.mk,v 1.5 2016/08/15 19:26:18 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.blender
|
|
PKG_SUPPORTED_OPTIONS=
|
|
# disabled these options; they ought to be re-instantiated one day
|
|
.if 0
|
|
PKG_SUPPORTED_OPTIONS+= blender-exppython ogg openal vorbis
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mexppython)
|
|
CONFIGURE_ARGS+= --enable-exppython
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-exppython
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mogg)
|
|
CONFIGURE_ARGS+= --with-ogg=${PREFIX:Q}
|
|
.include "../../multimedia/libogg/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ogg --disable-oggtest
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenal)
|
|
CONFIGURE_ARGS+= --enable-openal
|
|
.include "../../audio/openal/buildlink3.mk"
|
|
.else
|
|
CMAKE_OPTS+= -DWITH_OPENAL:BOOL=OFF
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mvorbis)
|
|
CONFIGURE_ARGS+= --with-vorbis=${PREFIX:Q}
|
|
.include "../../audio/libvorbis/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-vorbis --disable-vorbistest
|
|
.endif
|