Files
filesystem/test/issues/Jamfile.v2

38 lines
1.3 KiB
Plaintext

# Boost Filesystem test/issues Jamfile
# Copyright Beman Dawes 2014
# Distributed under the Boost Software License, Version 1.0.
# See www.boost.org/LICENSE_1_0.txt
# Library home page: http://www.boost.org/libs/filesystem
import os ;
local fs_default_ver = [ os.environ BOOST_FILESYSTEM_DEFAULT_VERSION ] ;
ECHO $(fs_default_ver) ;
project
: requirements # set requirements that apply to entire project
<library>/boost/filesystem//boost_filesystem
<library>/boost/system//boost_system
<toolset>msvc:<asynch-exceptions>on
<test-info>always_show_run_output
<define>BOOST_FILESYSTEM_DEFAULT_VERSION="$(fs_default_ver)"
<link>static
;
test-suite "filesystem-issues" :
# [ run 9054_static_const_codecvt_segfault_pre_main.cpp
# : : : <link>shared : 9054_shared ]
# [ run 9054_static_const_codecvt_segfault_pre_main.cpp
# : : : : 9054_static ]
[ run hello_filesystem.cpp : : : <link>shared : hello_shared ]
# [ run hello_filesystem.cpp : : : <link>static : hello_static ]
#
# [ run 9219.cpp
# : : : <link>shared : 9219_shared ]
# [ run 9219.cpp
# : : : <link>static : 9219_static ]
;