mirror of
https://github.com/boostorg/filesystem.git
synced 2026-01-26 18:42:10 +00:00
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
# Boost Filesystem Library Build Jamfile
|
|
|
|
subproject libs/filesystem/example ;
|
|
|
|
exe process_jam_log$(SUFEXE)
|
|
:
|
|
process_jam_log.cpp tiny_xml.cpp
|
|
:
|
|
<include>$(BOOST_ROOT) # this automatically points to the boost-sandbox root
|
|
<include>$(B_ROOT) # make this point to your boost-root
|
|
<library-path>$(B_ROOT)/libs/filesystem/build/bin/libfs.a/$(TOOLS)/debug/runtime-link-dynamic/
|
|
<find-library>fs
|
|
<library-path>$(B_ROOT)/libs/test/build/bin/libunit_test_framework.a/$(TOOLS)/debug/runtime-link-dynamic/threading-single
|
|
<find-library>unit_test_framework
|
|
:
|
|
debug
|
|
release
|
|
;
|
|
|
|
exe compiler_status$(SUFEXE)
|
|
:
|
|
compiler_status.cpp tiny_xml.cpp
|
|
:
|
|
<include>$(BOOST_ROOT) # this automatically points to the boost-sandbox root
|
|
<include>$(B_ROOT) # make this point to your boost-root
|
|
<library-path>$(B_ROOT)/libs/filesystem/build/bin/libfs.a/$(TOOLS)/debug/runtime-link-dynamic/
|
|
<find-library>fs
|
|
<library-path>$(B_ROOT)/libs/test/build/bin/libunit_test_framework.a/$(TOOLS)/debug/runtime-link-dynamic/threading-single
|
|
<find-library>unit_test_framework
|
|
:
|
|
debug
|
|
release
|
|
;
|