polyvox/INSTALL.txt
2010-05-27 15:29:24 +00:00

97 lines
3.2 KiB
Plaintext

****************
Building PolyVox
****************
Requirements
============
To build PolyVox you need:
* CMake 2.6 or greater (http://cmake.org)
* A C++ compiler with support for some C++0x features (GCC 4.3 or VC 2010 seem to work)
* Qt for building the tests (optional)
* Docygen for building the documentation (optional)
Linux
=====
Navigate to the PolyVox source (the directory containing this file) directory with and then enter the build directory with::
cd build
CMake
-----
Now, we use CMake to generate the makefiles with::
cmake ..
The ``..`` tells CMake to look in the parent directory for the source.
By default this will set it to be installed in ``/usr/local`` so if you want to install it elsewhere, set the ``CMAKE_INSTALL_PREFIX`` variable to the path you want to install to.
You can set CMake variables by passing -D<variable>:<type>=<value> cmake command (the ``:<type>`` part is optional but recommended). For example, to set the install prefix, pass::
-DCMAKE_INSTALL_PREFIX:PATH=/whatever/you/want
The other available settings for PolyVox are:
``ENABLE_EXAMPLES`` (ON or OFF)
Build the example applications that come with PolyVox. Defaults to ON.
``BUILD_TESTING`` (ON or OFF)
Build the test applications that come with PolyVox. Running the tests is detailed in the next section. Defaults to ON.
``CMAKE_BUILD_TYPE`` (Debug, Release, RelWithDebInfo or MinSizeRel)
String option to set the type of build. This will automatically set some compilation flags such as the optimisation level or define ``NDEBUG``.
For development work against the library
Use Debug or RelWithDebInfo
For your final version
Use Release
For building packages (e.g. for Linux distributions)
Use RelWithDebInfo
Building
--------
Once this has completed successfully, simply run::
make install
and all should work.
Testing
-------
To run the tests you do not need to have run ``make install``. Simply run::
make
make test
API Documentation
-----------------
If you want to generate the API documentation, you'll need Doxygen installed. If you saw ``API Docs available: YES`` at the end of the CMake output then you're all set. To generate the docs, just run::
make doc
and the documentation can be browsed from ``build/library/doc/html/index.html``.
Windows
=======
CMake
-----
You need CMake installed so get the binary distribution from `CMake.org <http://cmake.org/cmake/resources/software.html>`_. Install it and run the CMake GUI.
Point the source directory to the directory holding this file and the build directory to the ``build`` subdirectory. Then, click the ``Configure`` button. Click through the dialog box that appears and once you've clicked ``Finish`` you should see text appearing in the bottom text area. Once this has finished, some options will appear in the top area. The purpose of these options in detailed in the Linux→CMake section above. Once you have set these options to what you please, click ``Configure`` again. If it completes without errors then you can click ``Generate`` which will generate your compilers project files.
Building
--------
Open the project files in your IDE and build the project as you normally would.