2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-12 12:02:54 +00:00
Files
fiber/performance/thread/Jamfile.v2
2014-07-31 18:04:25 +02:00

47 lines
948 B
Plaintext

# Copyright Oliver Kowalke 2009.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# For more information, see http://www.boost.org/
import common ;
import feature ;
import indirect ;
import modules ;
import os ;
import toolset ;
project boost/fiber/performance/thread
: requirements
<library>/boost/chrono//boost_chrono
<library>/boost/coroutine//boost_coroutine
<library>/boost/thread//boost_thread
<library>/boost/program_options//boost_program_options
<link>static
<optimization>speed
<threading>multi
<variant>release
;
exe overhead_join
: overhead_join.cpp
;
exe overhead_detach
: overhead_detach.cpp
;
exe overhead_yield
: overhead_yield.cpp
;
exe overhead_future
: overhead_future.cpp
;
exe scale_join
: scale_join.cpp
;