mirror of
https://github.com/boostorg/interprocess.git
synced 2026-01-27 19:02:14 +00:00
34 lines
1016 B
Plaintext
34 lines
1016 B
Plaintext
# Boost interprocess Library Build Jamfile
|
|
# (C) Copyright Ion Gaztañaga 2004-2006.
|
|
# Use, modification, and distribution are subject to 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)
|
|
#
|
|
# See http://www.boost.org/libs/interprocess for the library home page.
|
|
|
|
subproject libs/interprocess/example ;
|
|
|
|
rule demo-interprocess-build ( demo-name )
|
|
{
|
|
exe $(demo-name)
|
|
: # sources
|
|
$(demo-name).cpp
|
|
# <lib>../build/boost_interprocess
|
|
: # requirements
|
|
<include>$(BOOST_ROOT)
|
|
<sysinclude>$(BOOST_ROOT)
|
|
: # default build
|
|
release
|
|
<runtime-link>static
|
|
;
|
|
}
|
|
|
|
demo-interprocess-build process_a_example ;
|
|
demo-interprocess-build process_a_fixed_example ;
|
|
demo-interprocess-build process_b_example ;
|
|
demo-interprocess-build process_b_fixed_example ;
|
|
demo-interprocess-build alloc_example ;
|
|
demo-interprocess-build named_alloc_example ;
|
|
|
|
|