===============================================================================
wxWidgets setup for Windows Environment
===============================================================================
wxWidgets is available in the following site.

http://www.wxwidgets.org/

-------------------------------
Setting wxWidgets for Borland-C
-------------------------------
Build wxWidgets library by the following steps.

1. Download a package file wxMSW-x.x.x-Setup.exe and expands it in the directory
   where  Borland-C has been installed. The directory may look like:
   "C:\Borland\BCC55\wxWidgets-x.x.x"

2. Open include\wx\msw\setup.h and edit a corresponding line as follows.
   #define wxUSE_GLCANVAS 1

3. Open a command prompt window, change the current directory to build\msw and
   executes the following command.
   > make -f makefile.bcc BUILD=release USE_OPENGL=1

-----------------------------------
Setting wxWidgets for Visual Studio
-----------------------------------
Build wxWidgets library by the following steps.

1. Download a package file wxMSW-x.x.x-Setup.exe and expands it in the directory
   where  Visual C has been installed. The directory may look like: "C:\Program Files\
   Microsoft Visual Studio x\VC\wxWidgets-x.x.x"

2. Open include\wx\msw\setup.h and edit a corresponding line as follows.
   #define wxUSE_GLCANVAS 1

3. Open a command prompt with Visual Studio environment by selecting Window's
   start menu: [Start]-[Program]-[Microsoft Visual Studio xxxx]-
   [Visual Studio Command Prompt].

4. Change the current directory to wxWidgets-x.x.x\build\msw and executes
   the followint command.
   > nmake -f makefile.vc BUILD=release USE_OPENGL=1
