blob: 6f03fe14b0c9e3bd98433a0293f000dfb20cd137 [file] [log] [blame]
Brian Silvermanf83c99f2018-08-04 23:36:58 -07001#==============================================================================
2# Copyright (c) 2012 Antony Polukhin
3#
4# Distributed under the Boost Software License, Version 1.0. (See accompanying
5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6#==============================================================================
7
8# performance tests
9import testing ;
10import path ;
11
12path-constant TEST_DIR : . ;
13
14project performance/test
15 : source-location ./
16 : requirements
17# <library>/boost/chrono//boost_chrono
18# <library>/boost/system//boost_system
19 <link>static
20 <target-os>freebsd:<linkflags>"-lrt"
21 <target-os>linux:<linkflags>"-lrt"
22 <toolset>gcc:<cxxflags>-fvisibility=hidden
23 <toolset>intel-linux:<cxxflags>-fvisibility=hidden
24 <toolset>sun:<cxxflags>-xldscope=hidden
25 : default-build release
26 ;
27
28run performance_test.cpp : $(TEST_DIR) ;
29