1 | # Copyright 2003, 2005 Douglas Gregor |
---|
2 | # Copyright 2004 John Maddock |
---|
3 | # Copyright 2002, 2003, 2004 Vladimir Prus |
---|
4 | # Distributed under the Boost Software License, Version 1.0. |
---|
5 | # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) |
---|
6 | |
---|
7 | # This file is used to configure your Boost.Build installation. Please read |
---|
8 | # the user manual to find out where to put it. |
---|
9 | |
---|
10 | # Toolset declarations are most important in this file. They tell Boost.Build |
---|
11 | # what compilers are available and where to look for them. The first toolset |
---|
12 | # will become "default" one. |
---|
13 | # Some important libraries can also be configured. |
---|
14 | # Uncomment relevant parts to suite your local configuration and preferences. |
---|
15 | |
---|
16 | import toolset : using ; |
---|
17 | |
---|
18 | # GCC configuration |
---|
19 | |
---|
20 | # Configure gcc (default version) |
---|
21 | # using gcc ; |
---|
22 | |
---|
23 | # Configure specific gcc version, giving alternative name to use |
---|
24 | # using gcc : 3.2 : g++-3.2 ; |
---|
25 | |
---|
26 | # MSVC configuration |
---|
27 | |
---|
28 | # Configure msvc (default version, searched in standard location |
---|
29 | # and PATH). |
---|
30 | # using msvc ; |
---|
31 | |
---|
32 | # Borland configuration |
---|
33 | # using borland ; |
---|
34 | |
---|
35 | |
---|
36 | # STLPort configuration |
---|
37 | |
---|
38 | # Configure, specifying location of STLPort headers. |
---|
39 | # Libraries must be either not needed, or available to |
---|
40 | # the compiler by default |
---|
41 | # using stlport : : /usr/include/stlport ; |
---|
42 | |
---|
43 | # Configure, specifying locatioh of both headers and libraries |
---|
44 | # using stlport : : /usr/include/stlport /usr/lib ; |
---|
45 | |
---|
46 | |
---|
47 | # QT configuration |
---|
48 | |
---|
49 | # Configure, assuming QTDIR gives the installation prefix |
---|
50 | # using qt ; |
---|
51 | |
---|
52 | # Configure with explicit installation prefix |
---|
53 | # using qt : /usr/opt/qt ; |
---|
54 | |
---|