===============================================================================
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 a command prompt window, change the current directory to build\msw and
   executes the following command.
   > make -f makefile.bcc BUILD=release

-----------------------------------
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 9.0\VC\wxWidgets-x.x.x"

2. Open a project file "build\msw\wx.dsw" under the directory with Visual Studio.
   Click [Yes to All] when a message box asks you if it's OK to convert existing
   project files into a new format.

3. Open "Structure Manager" dialog by [Build]-[Structure Manager...] from the main menu
   and sets the active solution to "Release".

4. Start build by [Build]-[Solution Build] from the main menu.

Since Visual Studio 2010, you can not use IDE to build wxWidgets as it fails to
convert the project file into its own format. In such a case, you can use
makefile in a command prompt as follows.

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 10.0\VC\wxWidgets-x.x.x"

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

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