071668f474
0.9.10 -> 0.9.11 general: - Now using CMake as the default build system. For now, autotools based build and "custom" build systems are still supported. - New Cocoa port - Added a dynamic recompiling SH2 core for x86 and ARM - New SCSP implementation - Major update of the software renderer from the yabause-rr team - Added an option to allow to execute from the cache - Improvements to the OpenGL renderer carbon port: - Improvements gtk port: - Added command line option to enable/disable frame skipping / limiting. - Added frame skipping/limiting configuration in settings. - Added --autoload command line option - Vdp2 layers can be toggled from the Vdp2 debug window qt port: - Added command line support
31 lines
994 B
Makefile
31 lines
994 B
Makefile
# $NetBSD: options.mk,v 1.1 2011/11/30 12:07:52 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.yabause
|
|
PKG_SUPPORTED_OPTIONS= gtk openal qt
|
|
PKG_SUGGESTED_OPTIONS= gtk
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
#.if !empty(PKG_OPTIONS:Mdoxygen)
|
|
#BUILD_DEPENDS+= doxygen>=1.6.3:../../devel/doxygen
|
|
#.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk)
|
|
CONFIGURE_ENV+= YAB_PORTS=gtk
|
|
CMAKE_ARGS+= -DYAB_PORTS=gtk
|
|
CMAKE_ARGS+= -DGTK2_GDKCONFIG_INCLUDE_DIR:PATH=${BUILDLINK_PREFIX.gtk2}/lib/gtk-2.0/include
|
|
CMAKE_ARGS+= -DGTK2_GLIB_INCLUDE_DIR:PATH=${BUILDLINK_PREFIX.glib2}/include/glib/glib-2.0
|
|
CMAKE_ARGS+= -DGTK2_GLIBCONFIG_INCLUDE_DIR:PATH=${BUILDLINK_PREFIX.glib2}/lib/glib-2.0/include
|
|
BUILDLINK_API_DEPENDS.gtkglext+= gtkglext>=1.2.0nb4
|
|
.include "../../graphics/gtkglext/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenal)
|
|
.include "../../audio/openal/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mqt)
|
|
CONFIGURE_ENV+= YAB_PORTS=qt
|
|
CMAKE_ARGS+= -DYAB_PORTS=qt
|
|
.include "../../x11/qt4-tools/buildlink3.mk"
|
|
.endif
|