mirror of
https://github.com/boostorg/filesystem.git
synced 2026-02-26 04:32:25 +00:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
# Boost Filesystem Library test Jamfile
|
|
|
|
# (C) Copyright Beman Dawes 2002. Permission to copy, use, modify, sell and
|
|
# distribute this software is granted provided this copyright notice appears in
|
|
# all copies. This software is provided "as is" without express or implied
|
|
# warranty, and with no claim as to its suitability for any purpose.
|
|
|
|
project
|
|
: requirements <library>/boost/filesystem//boost_filesystem
|
|
<define>BOOST_ALL_NO_LIB
|
|
;
|
|
|
|
test-suite "filesystem" :
|
|
[ run path_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_STATIC_LINK
|
|
<runtime-link>static <link>static
|
|
]
|
|
[ run path_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_DYN_LINK
|
|
: path_test_dll
|
|
]
|
|
[ run operations_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_STATIC_LINK
|
|
<runtime-link>static <link>static
|
|
]
|
|
[ run operations_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_DYN_LINK
|
|
: operations_test_dll
|
|
]
|
|
[ run fstream_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_STATIC_LINK
|
|
<runtime-link>static <link>static
|
|
]
|
|
[ run convenience_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_STATIC_LINK
|
|
<runtime-link>static <link>static
|
|
]
|
|
[ run large_file_support_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_STATIC_LINK
|
|
<runtime-link>static <link>static
|
|
]
|
|
[ run wide_test.cpp
|
|
: : : <define>BOOST_FILESYSTEM_STATIC_LINK
|
|
<runtime-link>static <link>static
|
|
]
|
|
|
|
[ compile ../example/mbcopy.cpp ]
|
|
[ compile ../example/mbpath.cpp ]
|
|
[ compile ../example/simple_ls.cpp ]
|
|
;
|