Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/config/test/options.jam @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 682 bytes
Line 
1# copyright John Maddock 2003
2# Use, modification and distribution are subject to the
3# Boost Software License, Version 1.0. (See accompanying file
4# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#
7# this template defines the options common to
8# all config builds and tests:
9#
10template config_options
11   : # sources
12   : # requirements
13     <sysinclude>$(BOOST_ROOT)
14     # como requires access to <windows.h>:
15     <como-win32><*><no-warn>
16     # threading tests require thread support turned on:
17     <threading>multi
18   ;
19
20template config_test_options
21   : # sources
22     <lib>../../test/build/boost_test_exec_monitor
23     <template>config_options
24   ;
25 
26
Note: See TracBrowser for help on using the repository browser.