mirror of
https://github.com/boostorg/filesystem.git
synced 2026-02-27 17:02:19 +00:00
17 lines
663 B
Plaintext
17 lines
663 B
Plaintext
# Boost Filesystem Library Build 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.
|
|
|
|
subproject libs/filesystem/build ;
|
|
|
|
SOURCES = exception operations_posix_windows path_posix_windows convenience ;
|
|
|
|
lib boost_filesystem
|
|
: ../src/$(SOURCES).cpp
|
|
: <include>$(BOOST_ROOT) <sysinclude>$(BOOST_ROOT)
|
|
<no-warn>exception.cpp <no-warn>operations_posix_windows.cpp
|
|
: debug release
|
|
; |