Files

26 lines
614 B
Plaintext
Raw Permalink Normal View History

# 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
<library>/boost/timer//boost_timer
2013-05-22 14:12:17 -04:00
;
SOURCES = speed_test speed_test_functions ;
2013-05-22 14:12:17 -04:00
exe "speed_test"
: $(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
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-03-30 07:01:19 -04:00
install bin : speed_test loop_time_test ;