boost/tools/Jamfile.v2
John Maddock d8715def13 Change Jamfile to <runtime-link>
[SVN r29738]
2005-06-22 17:03:13 +00:00

49 lines
819 B
Text

# Jamfile which builds all the tools.
project
:
requirements
<link>static
<runtime-link>static
<threading>single
;
TOOLS =
bcp//bcp
inspect/build//inspect
quickbook//quickbook
regression/build//compiler_status
regression/build//process_jam_log
wave/build//wave
;
install dist-bin
:
$(TOOLS)
:
<install-type>EXE
<location>../dist/bin
:
release
;
install dist-lib
:
$(TOOLS)
:
<install-type>LIB
<location>../dist/lib
:
release
;
local patterns = *.dtd *.xml *.xsl LICENSE ;
local dirs = boostbook/dtd boostbook/xsl ;
install dist-share-boostbook
:
[ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
:
<location>../dist/share
<install-source-root>.
;