22 lines
710 B
Bash
Executable File
22 lines
710 B
Bash
Executable File
#!/bin/bash
|
|
|
|
svn co -r 70933 http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk wxWidgets
|
|
cd wxWidgets
|
|
|
|
case $OSTYPE in
|
|
darwin*)
|
|
export CC=clang CXX=clang++ CFLAGS="-stdlib=libc++" CXXFLAGS="-stdlib=libc++" CPPFLAGS="-stdlib=libc++"
|
|
BACKEND="osx_cocoa"
|
|
ADD_OPTS=--with-macosx-version-min=10.7 --enable-stl
|
|
;;
|
|
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 $ADD_OPTS
|
|
make
|