1 | # Copyright 2003 Vladimir Prus |
---|
2 | # Distributed under the Boost Software License, Version 1.0. |
---|
3 | # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) |
---|
4 | |
---|
5 | # This file is used to configure your Boost.Build installation. Please read |
---|
6 | # the user manual to find out where to put it. |
---|
7 | |
---|
8 | # Toolset declarations are most important in this file. The tell Boost.Build |
---|
9 | # what compilers are available and where to look for them. The first toolset |
---|
10 | # will become "default" one. |
---|
11 | # Some important libraries can also be configured. |
---|
12 | # Uncomment relevant parts to suite your local configuration and preferences. |
---|
13 | |
---|
14 | import toolset : using ; |
---|
15 | |
---|
16 | # GCC configuration |
---|
17 | |
---|
18 | # Configure gcc (default version) |
---|
19 | # using gcc ; |
---|
20 | |
---|
21 | # Configure specific gcc version, giving alternative name to use |
---|
22 | # using gcc : 3.2 g++-3.2 ; |
---|
23 | |
---|
24 | # MSVC configuration |
---|
25 | |
---|
26 | # Configure msvc (default version, searched in standard location |
---|
27 | # and PATH). |
---|
28 | # using msvc ; |
---|
29 | |
---|
30 | # Borland configuration |
---|
31 | # using borland ; |
---|
32 | |
---|
33 | |
---|
34 | # STLPort configuration |
---|
35 | |
---|
36 | # Configure, specifying location of STLPort headers. |
---|
37 | # Libraries must be either not needed, or available to |
---|
38 | # the compiler by default |
---|
39 | # using stlport : /usr/include/stlport ; |
---|
40 | |
---|
41 | # Configure, specifying locatioh of both headers and libraries |
---|
42 | # using stlport : /usr/include/stlport : /usr/lib ; |
---|
43 | |
---|
44 | |
---|
45 | # QT configuration |
---|
46 | |
---|
47 | # Configure, assuming QTDIR gives the installation prefix |
---|
48 | # using qt ; |
---|
49 | |
---|
50 | # Configure with explicit installation prefix |
---|
51 | # using qt : /usr/opt/qt ; |
---|
52 | |
---|
53 | # xsltproc (from libxslt) configuration |
---|
54 | using xsltproc ; |
---|
55 | |
---|
56 | # BoostBook configuration |
---|
57 | # using boostbook ; |
---|
58 | using boostbook : C:/Progra~1/docbook-xsl/docbook-xsl-1.66.1 |
---|
59 | : C:/Progra~1/docbook/4.2 |
---|
60 | ; |
---|
61 | using doxygen : C:/Progra~1/doxygen/bin/doxygen.exe ; |
---|
62 | |
---|
63 | using fop : C:/PROGRA~1/fop/FOP-02~1.4 |
---|
64 | : C:/WINDOWS/system32/java.exe |
---|
65 | ; |
---|
66 | |
---|
67 | |
---|
68 | |
---|
69 | |
---|
70 | |
---|
71 | |
---|
72 | |
---|
73 | |
---|