Changes between Version 19 and Version 20 of MussaglBuild


Ignore:
Timestamp:
03/06/2007 02:33:27 PM (17 years ago)
Author:
king
Comment:

Added example bjam commands for building boost libraries used by Mussa.

Legend:

Unmodified
Added
Removed
Modified
  • MussaglBuild

    v19 v20  
    3636
    3737  For windows users there's a copy of a build tree at http://woldlab.caltech.edu/~diane/proj/win32-boost-mingw-build.tar.bz2
     38
     39Example command(s) for building boost from source (building only parts used by Mussa):
     40
     41Win32 w/ Mingw
     42{{{
     43bjam "-sTOOLS=mingw" --with-python-version=2.4 --with-python --with-program_options --with-filesystem --with-serialization --with-test install
     44}}}
     45
     46Win32 w/ Visual Studio 2005
     47{{{
     48bjam "-sTOOLS=vc-8_0" --with-python-version=2.4 --with-python --with-program_options --with-filesystem --with-serialization --with-test install
     49}}}
     50
     51Debian (Why build from source when you have Debian packages?):
     52{{{
     53apt-get install libboost-python-dev libboost-python1.33.1 libboost-program-options-dev libboost-program-options1.33.1 libboost-serialization-dev libboost-test-dev libboost-test1.33.1
     54}}}
     55
     56
    3857
    3958== CMake ==