mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 02:29:59 -06:00
wxWidgets3: update to svn r70933
This commit is contained in:
19
Externals/wxWidgets3/build_wx.sh
vendored
Executable file
19
Externals/wxWidgets3/build_wx.sh
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
svn co -r 70933 http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk wxWidgets
|
||||
cd wxWidgets
|
||||
|
||||
case $OSTYPE in
|
||||
darwin*)
|
||||
BACKEND="osx_cocoa"
|
||||
;;
|
||||
linux*)
|
||||
BACKEND="gtk"
|
||||
;;
|
||||
esac
|
||||
|
||||
mkdir build-local
|
||||
cd build-local
|
||||
|
||||
../configure --with-$BACKEND --disable-shared --enable-unicode --disable-compat28 --disable-exceptions --disable-fswatcher --without-regex --without-expat --disable-xml --disable-ribbon --disable-propgrid --disable-stc --disable-html --disable-richtext --without-libjpeg --without-libtiff --disable-webview --disable-markup
|
||||
make
|
Reference in New Issue
Block a user