2006-11-07 02:19:13 +00:00
|
|
|
# Boost System Library test Jamfile
|
|
|
|
|
|
|
|
# Copyright Beman Dawes 2003, 2006
|
|
|
|
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
|
|
# See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
|
|
|
# See library home page at http://www.boost.org/libs/system
|
|
|
|
|
|
|
|
project
|
|
|
|
: requirements
|
|
|
|
<library>/boost/system//boost_system
|
|
|
|
<define>BOOST_ALL_NO_LIB
|
|
|
|
;
|
|
|
|
|
|
|
|
test-suite "system"
|
|
|
|
: [ run error_code_test.cpp
|
|
|
|
: : : <define>BOOST_SYSTEM_STATIC_LINK
|
|
|
|
<runtime-link>static <link>static
|
|
|
|
]
|
|
|
|
[ run error_code_test.cpp
|
|
|
|
: : : <define>BOOST_SYSTEM_DYN_LINK
|
|
|
|
: error_code_test_dll
|
|
|
|
]
|
|
|
|
[ run error_code_user_test.cpp
|
|
|
|
: : : <define>BOOST_SYSTEM_STATIC_LINK
|
|
|
|
<runtime-link>static <link>static
|
|
|
|
]
|
|
|
|
[ run error_code_user_test.cpp
|
|
|
|
: : : <define>BOOST_SYSTEM_DYN_LINK
|
|
|
|
: error_code_user_test_dll
|
|
|
|
]
|
|
|
|
[ run system_error_test.cpp
|
|
|
|
: : : <define>BOOST_ESYSTEM_STATIC_LINK
|
|
|
|
<runtime-link>static <link>static
|
|
|
|
]
|
|
|
|
[ run system_error_test.cpp
|
|
|
|
: : : <define>BOOST_SYSTEM_DYN_LINK
|
|
|
|
: system_error_test_dll
|
|
|
|
]
|
2007-09-09 14:59:10 +00:00
|
|
|
[ run header_only_test.cpp
|
|
|
|
: : : <runtime-link>static <link>static
|
|
|
|
]
|
2006-11-07 02:19:13 +00:00
|
|
|
;
|