Haxe externs (and wrappers) for wxWidgets
- Download and install wxWidgets using installer from https://www.wxwidgets.org/downloads/
- Create
WXWIN
environment var if setup didnt (eg:C:\wxWidgets-3.1.0
) - Run
vcvarsall.bat
from Visual Studio dir (eg:"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
) - Build shared and static releases of wxWidgets:
nmake.exe -f %WXWIN%\makefile.vc BUILD=release
nmake.exe -f %WXWIN%\makefile.vc BUILD=release SHARED=1
You need wxWidgets 3.x and wx-config available in your path.
You can install wxWidgets with:
- on debian/ubuntu:
apt-get install libwxgtk3.0-dev libwxbase3.0-dev
You need at least OSX 10.7 and you can install wxWidgets with:
brew update
brew install wxwidgets