Changes between Version 22 and Version 23 of BoostDocs/GettingStarted


Ignore:
Timestamp:
Nov 23, 2008, 11:32:32 AM (14 years ago)
Author:
Daniel James
Comment:

Add quick instructions for building quickbook.

Legend:

Unmodified
Added
Removed
Modified
  • BoostDocs/GettingStarted

    v22 v23  
    145145== Pre-build quickbook ==
    146146
    147 ''TODO''
     147Quickbook is built automatically during the build process, but as it takes a little while to build you might prefer to build it in advance. To do this, in the command line type (replacing `$BOOST_ROOT` with the root directory of boost):
     148
     149{{{
     150cd $BOOST_ROOT/tools/quickbook
     151bjam dist-bin
     152}}}
     153
     154Or for windows:
     155
     156{{{
     157cd $BOOST_ROOT\tools\quickbook
     158bjam dist-bin
     159}}}
     160
     161Change `using quickbook` in `user-config.jam` to (replacing `$BOOST_ROOT` with the root directory of boost, as before):
     162
     163{{{
     164using quickbook : $BOOST_ROOT/dist/bin/quickbook
     165}}}
     166
     167Windows:
     168
     169{{{
     170using quickbook : $BOOST_ROOT\\dist\\bin\\quickbook
     171}}}
    148172
    149173== How to build pdfs ==