mirror of
https://github.com/boostorg/fiber.git
synced 2026-02-20 14:42:21 +00:00
38 lines
1004 B
Plaintext
38 lines
1004 B
Plaintext
# Boost.Reflection - tests Jamfile
|
|
#
|
|
# Copyright 2008 Mariano G. Consoni
|
|
# Distributed under 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)
|
|
#
|
|
# See http://www.boost.org/ for latest version.
|
|
#
|
|
|
|
using testing ;
|
|
import os ;
|
|
local BOOST_ROOT = [ os.environ BOOST_ROOT ] ;
|
|
project
|
|
: requirements
|
|
<library>$(BOOST_ROOT)/libs/test/build//boost_unit_test_framework/<link>shared
|
|
<include>../../../
|
|
<include>$(BOOST_ROOT)
|
|
<define>BOOST_TEST_NO_AUTO_LINK=1
|
|
<toolset>gcc:<define>BOOST_TEST_DYN_LINK
|
|
<toolset>gcc:<find-shared-library>dl
|
|
<toolset>darwin:<define>DYLD_LIBRARY_PATH=../bin/
|
|
:
|
|
;
|
|
|
|
test-suite reflection_tests_all
|
|
:
|
|
[ run inheritance_test.cpp ]
|
|
[ run parameter_map_test.cpp ]
|
|
[ run basic_test.cpp ]
|
|
[ run single_param_test.cpp ]
|
|
[ run shared_library_test.cpp ]
|
|
[ run multi_param_test.cpp ]
|
|
[ run parameter_info_test.cpp ]
|
|
[ run data_test.cpp ]
|
|
:
|
|
;
|