Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / lexical_cast / perf / Jamfile.v2
1 #==============================================================================
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
9 import testing ;
10 import path ;
11
12 path-constant TEST_DIR : . ;
13
14 project 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
28 run performance_test.cpp : $(TEST_DIR) ;
29