mirror of
https://github.com/boostorg/filesystem.git
synced 2026-01-27 19:02:10 +00:00
28 lines
625 B
Plaintext
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
|
|
;
|