Changes between Version 1 and Version 2 of TryModBoost


Ignore:
Timestamp:
Dec 8, 2012, 3:58:01 PM (10 years ago)
Author:
Beman Dawes
Comment:

Add details, examples

Legend:

Unmodified
Added
Removed
Modified
  • TryModBoost

    v1 v2  
    55== Prerequisites ==
    66
    7  * Git command line client installed]
    8  * [http://www.cmake.org/CMake CMake] installed.
     7 * Git command line client installed
     8 * A C++ compiler installed
     9 * [http://www.cmake.org/CMake CMake] installed
    910
    1011== Installing Modular Boost ==
     
    1819cmake -P forward_headers.cmake
    1920}}}
     21
     22From this point on, modularized Boost behaves a lot like pre-modularized Boost.
     23
     24== Experimenting ==
     25
     26If you want to build b2 and Boost source libraries, run the usual command line script. For Windows, that would be:
     27
     28{{{
     29bootstrap
     30.\b2
     31}}}
     32
     33For POSIX-like systems, it is probably:
     34
     35{{{
     36./bootstrap.sh
     37./b2
     38}}}
     39
     40If b2 isn't already in your path, you probably want to add it now.
     41
     42Testing is done just the way it has always been done. For example,
     43
     44{{{
     45cd libs/system/test
     46b2
     47}}}
     48
     49should run the tests for Boost.system, all of which should pass.