2003-08-03 11:41:45 +00:00
|
|
|
# copyright John Maddock 2003
|
2006-07-16 15:42:19 +00:00
|
|
|
# Use, modification and distribution are subject to 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)
|
2003-08-03 11:41:45 +00:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# this template defines the options common to
|
|
|
|
|
# all config builds and tests:
|
|
|
|
|
#
|
|
|
|
|
template config_options
|
|
|
|
|
: # sources
|
|
|
|
|
: # requirements
|
|
|
|
|
<sysinclude>$(BOOST_ROOT)
|
|
|
|
|
# como requires access to <windows.h>:
|
|
|
|
|
<como-win32><*><no-warn>
|
|
|
|
|
# threading tests require thread support turned on:
|
|
|
|
|
<threading>multi
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
template config_test_options
|
|
|
|
|
: # sources
|
2004-06-15 11:37:57 +00:00
|
|
|
<lib>../../test/build/boost_test_exec_monitor
|
2003-08-03 11:41:45 +00:00
|
|
|
<template>config_options
|
|
|
|
|
;
|
|
|
|
|
|
2006-07-16 15:42:19 +00:00
|
|
|
|