| 1 | # Copyright (C) Vladimir Prus 2003. Permission to copy, use, modify, sell and |
|---|
| 2 | # distribute this software is granted provided this copyright notice appears in |
|---|
| 3 | # all copies. This software is provided "as is" without express or implied |
|---|
| 4 | # warranty, and with no claim as to its suitability for any purpose. |
|---|
| 5 | |
|---|
| 6 | # This file is used to configure your Boost.Build installation. Please read |
|---|
| 7 | # the user manual to find out where to put it. |
|---|
| 8 | |
|---|
| 9 | # Toolset declarations are most important in this file. They tell Boost.Build |
|---|
| 10 | # what compilers are available and where to look for them. The first toolset |
|---|
| 11 | # will become "default" one. |
|---|
| 12 | # Some important libraries can also be configured. |
|---|
| 13 | # Uncomment relevant parts to suite your local configuration and preferences. |
|---|
| 14 | |
|---|
| 15 | import toolset : using ; |
|---|
| 16 | |
|---|
| 17 | # GCC configuration |
|---|
| 18 | |
|---|
| 19 | # Configure gcc (default version) |
|---|
| 20 | # using gcc ; |
|---|
| 21 | |
|---|
| 22 | # Configure specific gcc version, giving alternative name to use |
|---|
| 23 | # using gcc : 3.2 : g++-3.2 ; |
|---|
| 24 | |
|---|
| 25 | # MSVC configuration |
|---|
| 26 | |
|---|
| 27 | # Configure msvc (default version, searched in standard location |
|---|
| 28 | # and PATH). |
|---|
| 29 | # using msvc ; |
|---|
| 30 | |
|---|
| 31 | # Borland configuration |
|---|
| 32 | # using borland ; |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | # STLPort configuration |
|---|
| 36 | |
|---|
| 37 | # Configure, specifying location of STLPort headers. |
|---|
| 38 | # Libraries must be either not needed, or available to |
|---|
| 39 | # the compiler by default |
|---|
| 40 | # using stlport : : /usr/include/stlport ; |
|---|
| 41 | |
|---|
| 42 | # Configure, specifying locatioh of both headers and libraries |
|---|
| 43 | # using stlport : : /usr/include/stlport /usr/lib ; |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | # QT configuration |
|---|
| 47 | |
|---|
| 48 | # Configure, assuming QTDIR gives the installation prefix |
|---|
| 49 | # using qt ; |
|---|
| 50 | |
|---|
| 51 | # Configure with explicit installation prefix |
|---|
| 52 | # using qt : /usr/opt/qt ; |
|---|
| 53 | |
|---|