Ticket #1383: user-config.jam

File user-config.jam, 1.6 KB (added by mloskot <mateusz@…>, 15 years ago)

This is my configuration file I use on my Mac OS X machine.

Line 
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
16import toolset : using ;
17
18# GCC configuration
19
20# Configure gcc (default version)
21using darwin ;
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# Python configuration
36using python : 2.3 ;
37
38
39# STLPort configuration
40
41# Configure, specifying location of STLPort headers.
42# Libraries must be either not needed, or available to
43# the compiler by default
44# using stlport : : /usr/include/stlport ;
45
46# Configure, specifying locatioh of both headers and libraries
47# using stlport : : /usr/include/stlport /usr/lib ;
48
49
50# QT configuration
51
52# Configure, assuming QTDIR gives the installation prefix
53# using qt ;
54
55# Configure with explicit installation prefix
56# using qt : /usr/opt/qt ;
57