1#==============================================================================
2#   Copyright (c) 2012-2019 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 move_perf.cpp : $(TEST_DIR) ;
29
30