2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-02 08:52:07 +00:00
Files
fiber/performance/thread/Jamfile.v2
2014-06-29 12:54:39 +02:00

84 lines
1.5 KiB
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
;
alias sources
: ../bind_processor_aix.cpp
: <target-os>aix
;
alias sources
: ../bind_processor_freebsd.cpp
: <target-os>freebsd
;
alias sources
: ../bind_processor_hpux.cpp
: <target-os>hpux
;
alias sources
: ../bind_processor_linux.cpp
: <target-os>linux
;
alias sources
: ../bind_processor_solaris.cpp
: <target-os>solaris
;
alias sources
: ../bind_processor_windows.cpp
: <target-os>windows
;
explicit sources ;
exe overhead_join
: sources
overhead_join.cpp
;
exe overhead_join_multiple
: sources
overhead_join_multiple.cpp
;
exe overhead_detach
: sources
overhead_detach.cpp
;
exe overhead_yield
: sources
overhead_yield.cpp
;
exe overhead_future
: sources
overhead_future.cpp
;