Missed the creation of the build-directory while refactoring this article

Tobias Wissmueller 2016-02-12 10:56:54 +01:00
parent e6e9e29270
commit 2725a97fe2

@ -35,11 +35,12 @@ Substitute your own user paths where appropriate.
``` ```
ccliffe$ mkdir ~/Dev ccliffe$ mkdir ~/Dev
ccliffe$ cd ~/Dev ccliffe$ cd ~/Dev
ccliffe$ mkdir wxWidgets-build
wget -O wxWidgets-3.0.2.tar.bz2 http://sourceforge.net/projects/wxwindows/files/3.0.2/wxWidgets-3.0.2.tar.bz2/download wget -O wxWidgets-3.0.2.tar.bz2 http://sourceforge.net/projects/wxwindows/files/3.0.2/wxWidgets-3.0.2.tar.bz2/download
tar -xvjpf wxWidgets-3.0.2.tar.bz2 tar -xvjpf wxWidgets-3.0.2.tar.bz2
... unpacking ... ... unpacking ...
ccliffe$ cd wxWidgets-3.0.2 ccliffe$ cd wxWidgets-3.0.2
ccliffe$ ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --with-mac --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --with-macosx-version-min=10.9 --prefix=/Users/<YOUR_USERNAME>/Dev/wxWidgets-staticlib CXXFLAGS="-std=c++0x" --with-libiconv=/usr ccliffe$ ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --with-mac --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --with-macosx-version-min=10.9 --prefix=/Users/<YOUR_USERNAME>/Dev/wxWidgets-build CXXFLAGS="-std=c++0x" --with-libiconv=/usr
... configuring ... ... configuring ...
ccliffe$ make && make install ccliffe$ make && make install
... building, installing ... ... building, installing ...