Ticket #11120: project-config.jam

File project-config.jam, 911 bytes (added by tele, 8 years ago)
Line 
1# Boost.Build Configuration
2# Automatically generated by bootstrap.sh
3
4import option ;
5import feature ;
6
7# Compiler configuration. This definition will be used unless
8# you already have defined some toolsets in your user-config.jam
9# file.
10if ! gcc in [ feature.values <toolset> ]
11{
12 using gcc ;
13}
14
15project : default-build <toolset>gcc ;
16
17# Python configuration
18using python : 3.4 : /usr ;
19
20path-constant ICU_PATH : /usr ;
21
22
23# List of --with-<library> and --without-<library>
24# options. If left empty, all libraries will be built.
25# Options specified on the command line completely
26# override this variable.
27libraries = ;
28
29# These settings are equivivalent to corresponding command-line
30# options.
31option.set prefix : /usr/local ;
32option.set exec-prefix : /usr/local ;
33option.set libdir : /usr/local/lib ;
34option.set includedir : /usr/local/include ;
35
36# Stop on first error
37option.set keep-going : false ;