2
0
mirror of https://github.com/boostorg/process.git synced 2026-02-22 03:32:19 +00:00
Files
process/test/Jamfile.jam
2016-05-08 19:53:21 +02:00

68 lines
3.1 KiB
Plaintext

# Copyright (c) 2006, 2007 Julio M. Merino Vidal
# Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
# Copyright (c) 2009 Boris Schaeling
# Copyright (c) 2010 Felipe Tanus, Boris Schaeling
# Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
project : requirements
# <source>/boost//headers
# <source>/boost//system
<toolset>msvc:<define>_SCL_5SECURE_NO_WARNINGS
<target-os>windows:<define>WIN32_LEAN_AND_MEAN
<target-os>linux:<linkflags>-lpthread
;
searched-lib shell32 ;
import testing ;
alias program_options : /boost//program_options ;
alias filesystem : /boost//filesystem ;
alias iostreams : /boost//iostreams ;
alias system : /boost//system ;
alias thread : /boost//thread ;
exe sparring_partner : sparring_partner.cpp program_options system filesystem iostreams :
<warnings>off
;
if [ os.on-windows ]
{
exe sub_launch : sub_launcher.cpp program_options ../src/group_ref.cpp iostreams : <warnings>off ;
}
else
{
exe sub_launch : sub_launcher.cpp program_options iostreams : <warnings>off ;
}
test-suite ts :
[ run pipe.cpp iostreams system filesystem ]
[ run async.cpp iostreams system thread filesystem : : sparring_partner ]
[ run bind_stderr.cpp iostreams filesystem : : sparring_partner ]
[ run bind_stdin.cpp iostreams system filesystem : : sparring_partner ]
[ run bind_stdin_stdout.cpp iostreams system filesystem : : sparring_partner ]
[ run bind_stdout.cpp iostreams system filesystem : : sparring_partner ]
[ run bind_stdout_stderr.cpp iostreams system filesystem : : sparring_partner ]
[ run close_stderr.cpp iostreams system filesystem : : sparring_partner ]
[ run close_stdin.cpp iostreams system filesystem : : sparring_partner ]
[ run close_stdout.cpp iostreams system filesystem : : sparring_partner ]
[ run exit_code.cpp iostreams program_options system filesystem : : sparring_partner ]
[ run extensions.cpp system filesystem : : sparring_partner ]
[ run env.cpp iostreams program_options system filesystem : : sparring_partner ]
[ run group.cpp ../src/group_ref.cpp iostreams system thread : : sub_launch : <build>no <target-os>windows:<build>yes ]
[ run posix_specific.cpp iostreams system filesystem : : sparring_partner : <build>no <target-os>linux:<build>yes ]
[ run run_exe.cpp filesystem : : sparring_partner ]
[ run run_exe_path.cpp filesystem : : sparring_partner ]
[ run search_path.cpp filesystem system : : : <target-os>windows:<source>shell32 ]
[ run shell_path.cpp filesystem system ]
[ run show_window.cpp iostreams system : : sparring_partner : <build>no <target-os>windows:<build>yes ]
[ run start_dir.cpp iostreams filesystem system : : sparring_partner ]
[ run terminate.cpp system filesystem : : sparring_partner ]
[ run throw_on_error.cpp system filesystem : : sparring_partner ]
[ run wait.cpp system filesystem : : sparring_partner ]
;