Installation Instructions
*************************

Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 
2006, 20007, 2008 Free Software Foundation, Inc.

This file is free documentation; the Free Software Foundation gives
unlimited permission to copy, distribute and modify it.

Basic Installation
==================

The proposed standard build and installation method will be using cmake; 
cmake is a cross-platform build system available from http://www.cmake.org.
CMake 2.6 is required.

Windows
-------

 * create a build directory from within the desired branch e.g. trunk
 * cd build
 * run cmake: cmake ..
 * some environmental variables that should be set:
   * OPENALDIR: points to location of the OpenAL directory
   * SDLDIR: points to the location of the SDL directory
   * FFMPEGDIR: points to the location of the FFMPEG directory

Useful Command Line Options
---------------------------

If running cmake from the command line, some useful options to pass to are:

 * -G "NMake Makefiles": generates makefiles for nmake
 * -D CMAKE_INSTALL_PREFIX:STRING=c:\openlibraries 
 * -D CMAKE_BUILD_TYPE:STRING=Release 
 * -D WITH_PYTHON_EXTENTIONS:BOOL=FALSE

To get a list of all possible generators, run cmake --help

