1. compiler and wxwidgets
- Posted by mexzony Oct 18, 2010
- 1318 views
am a bit confused in trying to compile.can anyone just outline it in simple steps for me.i also downloaded wxwidgets but to compile it is confusing.any idea from any one. i use watcom compiler
2. Re: compiler and wxwidgets
- Posted by mattlewis (admin) Oct 18, 2010
- 1280 views
am a bit confused in trying to compile.can anyone just outline it in simple steps for me.i also downloaded wxwidgets but to compile it is confusing.any idea from any one. i use watcom compiler
I recently built a new version of the wxEuphoria binaries. You can download them here.
If you really want to build them yourself, the instructions are in the readme file. First, you'll need to download the source for wxWidgets 2.8.7. I recommend getting the windows installer. When I install, I usually install it into my wxEuphoria source directory. This makes building easy.
Once you've installed the wxWidgets source (from the readme):
* Open a command line in the wxWidgets-2.8.x\build\msw directory and type: > wmake -f makefile.wat BUILD=release USE_THREADS=0 SHARED=1 RUNTIME_LIBS=static UNICODE=1 VENDOR=eu
Now, I'll assume that you installed the wxWidgets source into your wxEuphoria source directory, and that the wxWidgets source directory is called "wxWidgets-2.8.7". Then, from your wxEuphoria directory:
> make wxWidgets-2.8.7
...and it should build libwxeu.dll.
Matt