
WARNING: THIS PROCEDURE DOES NOT WORK ANYMORE

====================================
How to build GuiLoader with MSVC 8.0
====================================

1. GuiLoader has this prerequisite to be installed:

- GTK+ for Win32: http://gladewin32.sourceforge.net

2. Boost.Build setup

Boost.Build is included in the Boost distribution; GuiLoader compilation also requires Boost-jam. Download locations: 
- http://boost.org/boost-build2
- http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=80982
- http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941

Two environment variables should be updated:
- PATH to include directory with bjam.exe 
- BOOST_BUILD_PATH to point to the boost-build directory

In order to tell Boost.Build to find and use MSVC compiler, this line should be appended to boost-build\user-config.jam file:

############
using msvc ;
############

3. GuiLoader compilation requires GTK+ library to be configured in boost-build\site-config.jam file. Sample site-config.jam content may be found in README.msvc file in the Crow distribution package.

4. Release version of GuiLoader library and examples could be built now with "bjam" command executed in a command prompt window from the toplevel distribution directory 'guiloader-x.y.z'.

PATH environment variable needs to be updated to point to guiloader.dll directory before the examples can run. Alternatively guiloader.dll may be copied to the directory containing an example binary or to the system directory.

