forked from proteanic/protean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-config.jam.example
36 lines (29 loc) · 1.32 KB
/
user-config.jam.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
##############################################################################
# This file can be copied to user-config.jam and customised to match
# your computer. Environment variables can be used instead, see the
# main jamfile for details.
##############################################################################
# Hints:
#
# - leave a space between all tokens, and in particular
# before the semicolons
#
# - enclose any paths containing spaces in double quotes
# more than one compiler can be used
# using msvc : 9.0 ;
# using gcc ;
# set this if you don't have Xerces or don't want XML support
# NO_XERCES = 1 ;
# required if NO_XERCES not set
# XERCES_INCLUDE = c:/xerces-c-3.0.1/src ;
# multiple paths are fine as long as there are no duplicate libraries
# XERCES_LIBPATH =
# c:/xerces-c-3.0.1/Build/Win32/VC8/Release
# c:/xerces-c-3.0.1/Build/Win32/VC8/Debug ;
# XERCES_BINARY is best left unset, but can be used to tell the
# compiler precisely what Xerces binary library to use. It is similar to
# e.g. ZLIB_BINARY used by Boost. NB: be careful not to mix Debug and
# Release libraries under Windows. If you do, everything will seem to compile
# fine but then the code will crash unpredictably at runtime.
# XERCES_BINARY = xerces-c_3 ;
##############################################################################