mirror of
https://github.com/boostorg/test.git
synced 2026-01-25 06:42:22 +00:00
28 lines
1.2 KiB
Plaintext
28 lines
1.2 KiB
Plaintext
# (C) Copyright Gennadiy Rozental 2001-2003.
|
|
# Permission to copy, use, modify, sell and distribute this software
|
|
# is granted provided this copyright notice appears in all copies.
|
|
# This software is provided "as is" without express or implied warranty,
|
|
# and with no claim as to its suitability for any purpose.
|
|
#
|
|
# See http://www.boost.org for most recent version including documentation.
|
|
|
|
subproject libs/test/example ;
|
|
|
|
rule boost-test-example ( example-name : lib-name )
|
|
{
|
|
exe $(example-name) : $(example-name).cpp <lib>../build/$(lib-name)
|
|
: <sysinclude>$(BOOST_ROOT)
|
|
<stlport-iostream>on
|
|
<borland><*><cxxflags>-w-8080 ;
|
|
}
|
|
|
|
boost-test-example prg_exec_example : boost_prg_exec_monitor ;
|
|
boost-test-example test_exec_example : boost_test_exec_monitor ;
|
|
boost-test-example unit_test_example1 : boost_unit_test_framework ;
|
|
boost-test-example unit_test_example2 : boost_unit_test_framework ;
|
|
boost-test-example unit_test_example3 : boost_unit_test_framework ;
|
|
boost-test-example unit_test_example4 : boost_unit_test_framework ;
|
|
boost-test-example unit_test_example5 : boost_unit_test_framework ;
|
|
boost-test-example test_case_template_example : boost_unit_test_framework ;
|
|
|