2015-01-14 16:28:30 -05:00
|
|
|
# Build and install benchmark programs
|
2013-05-22 14:12:17 -04:00
|
|
|
|
|
|
|
|
# Copyright Beman Dawes 2013
|
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
|
|
|
# See www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
|
|
|
|
|
project
|
|
|
|
|
: source-location ../test : requirements
|
2013-05-27 08:53:18 -04:00
|
|
|
<toolset>msvc:<asynch-exceptions>on
|
2015-01-14 16:28:30 -05:00
|
|
|
<library>/boost/timer//boost_timer
|
2013-05-22 14:12:17 -04:00
|
|
|
;
|
|
|
|
|
|
2013-05-23 10:11:29 -04:00
|
|
|
SOURCES = speed_test speed_test_functions ;
|
2013-05-22 14:12:17 -04:00
|
|
|
|
|
|
|
|
exe "speed_test"
|
2015-01-14 16:28:30 -05:00
|
|
|
: $(SOURCES).cpp
|
2013-05-28 07:37:52 -04:00
|
|
|
: <toolset>gcc:<cxxflags>-march=native
|
2013-05-22 14:12:17 -04:00
|
|
|
;
|
2013-05-27 08:53:18 -04:00
|
|
|
|
2015-01-14 16:28:30 -05:00
|
|
|
exe "loop_time_test"
|
|
|
|
|
: loop_time_test.cpp
|
2013-05-28 07:37:52 -04:00
|
|
|
: <toolset>gcc:<cxxflags>-march=native
|
2013-05-27 08:53:18 -04:00
|
|
|
;
|
2015-01-14 16:28:30 -05:00
|
|
|
|
2015-03-30 07:01:19 -04:00
|
|
|
install bin : speed_test loop_time_test ;
|