1 2# Copyright Oliver Kowalke 2009. 3# Distributed under the Boost Software License, Version 1.0. 4# (See accompanying file LICENSE_1_0.txt or copy at 5# http://www.boost.org/LICENSE_1_0.txt) 6 7# For more information, see http://www.boost.org/ 8 9import common ; 10import feature ; 11import indirect ; 12import modules ; 13import os ; 14import toolset ; 15 16project boost/fiber/performance/thread 17 : requirements 18 <link>static 19 <threading>multi 20 <optimization>speed 21 <variant>release 22 ; 23 24exe skynet_async 25 : skynet_async.cpp 26 ; 27 28exe skynet_std 29 : skynet_std.cpp 30 ; 31 32exe skynet_pthread 33 : skynet_pthread.cpp 34 ; 35