1 .. Copyright David Abrahams 2006. Distributed under the Boost
2 .. Software License, Version 1.0. (See accompanying
3 .. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 The first thing many people want to know is, “how do I build
9 Boost?” The good news is that often, there's nothing to build.
11 .. admonition:: Nothing to Build?
13 Most Boost libraries are **header-only**: they consist *entirely
14 of header files* containing templates and inline functions, and
15 require no separately-compiled library binaries or special
16 treatment when linking.
20 The only Boost libraries that *must* be built separately are:
24 * Boost.ProgramOptions_
25 * Boost.Python_ (see the `Boost.Python build documentation`__
26 before building and installing it)
28 * Boost.Serialization_
34 __ ../../libs/python/doc/building.html
36 A few libraries have optional separately-compiled binaries:
38 * Boost.DateTime_ has a binary component that is only needed if
39 you're using its ``to_string``\ /\ ``from_string`` or serialization
40 features, or if you're targeting Visual C++ 6.x or Borland.
42 * Boost.Graph_ also has a binary component that is only needed if
43 you intend to `parse GraphViz files`__.
45 * Boost.Test_ can be used in “header-only” or “separately compiled”
46 mode, although **separate compilation is recommended for serious
49 __ ../../libs/graph/doc/read_graphviz.html