1# Build and install benchmark programs
2
3# Copyright Beman Dawes 2013
4# Distributed under the Boost Software License, Version 1.0.
5# See www.boost.org/LICENSE_1_0.txt
6
7project
8    : source-location ../test    : requirements
9      <toolset>msvc:<asynch-exceptions>on
10      <library>/boost/timer//boost_timer
11    ;
12
13SOURCES = speed_test speed_test_functions ;
14
15exe "speed_test"
16       : $(SOURCES).cpp
17       : <toolset>gcc:<cxxflags>-march=native
18       ;
19
20exe "loop_time_test"
21       : loop_time_test.cpp
22       : <toolset>gcc:<cxxflags>-march=native
23       ;
24
25install bin : speed_test loop_time_test ;
26