Files
filesystem/example/Jamfile
Beman Dawes 997d24ad56 Fixes from John Maddock
[SVN r498]
2002-09-01 12:29:41 +00:00

28 lines
625 B
Plaintext

# Boost Filesystem Library Build Jamfile
subproject libs/filesystem/example ;
exe process_jam_log$(SUFEXE)
:
process_jam_log.cpp tiny_xml.cpp
<lib>../build/fs$(SUFLIB)
:
<include>$(BOOST_ROOT) # this automatically points to the boost-sandbox root
<include>$(PROJECT_ROOT) # make this point to your boost-root
:
debug
release
;
exe compiler_status$(SUFEXE)
:
compiler_status.cpp tiny_xml.cpp
<lib>../build/fs$(SUFLIB)
:
<include>$(BOOST_ROOT) # this automatically points to the boost-sandbox root
<include>$(PROJECT_ROOT) # make this point to your boost-root
:
debug
release
;