2
0
mirror of https://github.com/boostorg/context.git synced 2026-01-24 05:42:16 +00:00
Files
context/example/Jamfile.v2
Oliver Kowalke 47b0cc886c context: merge of 80553 (impl)
[SVN r80572]
2012-09-18 09:06:47 +00:00

50 lines
813 B
Plaintext

# Boost.Context Library Examples Jamfile
# 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 ;
if [ os.name ] = SOLARIS
{
lib socket ;
lib nsl ;
}
else if [ os.name ] = NT
{
lib ws2_32 ;
lib mswsock ;
}
else if [ os.name ] = HPUX
{
lib ipv6 ;
}
project boost/context/example
: requirements
<library>/boost/context//boost_context
<define>BOOST_ALL_NO_LIB=1
<link>static
;
exe jump
: jump.cpp
;
exe exit
: exit.cpp
;
exe transfer
: transfer.cpp
;