Building mpllibs

Building the library on Linux

Using a custom compiler

cmake should be given the following command line arguments:
cmake .. -DCMAKE_CXX_COMPILER:STRING="<path to the compiler>"

Enabling C++11 during compilation

cmake should be given the following command line arguments:
cmake .. -DCMAKE_CXX_FLAGS:STRING="-std=c++0x"

Using a custom Boost version

cmake should be given the following command line arguments:
cmake .. -DCMAKE_CXX_FLAGS:STRING="-I<path to Boost includes>" -DCMAKE_SHARED_LINKER_FLAGS:STRING="-L<path to Boost libs>"

Installing into a custom directory

cmake should be given the following command line arguments:
cmake .. -DCMAKE_INSTALL_PREFIX:PATH=<path to install to>

Building the library on Windows

[up]