Imported Upstream version 1.64.0
[platform/upstream/boost.git] / libs / process / example / Jamfile.jam
1 # Copyright (c) 2006, 2007 Julio M. Merino Vidal
2 # Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
3 # Copyright (c) 2009 Boris Schaeling
4 # Copyright (c) 2010 Felipe Tanus, Boris Schaeling
5 # Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
6 #
7 # Distributed under the Boost Software License, Version 1.0. (See accompanying
8 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
10 project : requirements
11   <include>../../..
12   <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
13   <target-os>windows:<define>WIN32_LEAN_AND_MEAN
14 ;
15
16 import testing ;
17
18 compile args.cpp ;
19 compile async_io.cpp ;
20 compile env.cpp ;
21 compile error_handling.cpp ;
22 compile io.cpp ;
23 compile posix.cpp : <build>no <target-os>linux:<build>yes ;
24 compile start_dir.cpp ;
25 compile sync_io.cpp ;
26 compile terminate.cpp ;
27 compile wait.cpp ;
28 compile windows.cpp : <build>no <target-os>windows:<build>yes ;