2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-13 00:12:17 +00:00
Files
fiber/performance/qthread/Jamfile.v2
2014-07-26 10:18:27 +02:00

31 lines
744 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/qthread
: requirements
<library>/boost/chrono//boost_chrono
<library>/boost/coroutine//boost_coroutine
<library>/boost/program_options//boost_program_options
<linkflags>"-lqthread"
<link>static
<optimization>speed
<threading>multi
<variant>release
;
exe overhead_join
: overhead_join.cpp
;