2
0
mirror of https://github.com/boostorg/config.git synced 2026-02-17 13:42:17 +00:00
Files
config/test/link/Jamfile
John Maddock 36a4261fda Added license info.
[SVN r34557]
2006-07-16 15:42:19 +00:00

43 lines
1.0 KiB
Plaintext

# copyright John Maddock 2003
# 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)
subproject libs/config/test/link ;
dll link_test : link_test.cpp
:
<runtime-link>dynamic
<define>BOOST_DYN_LINK=1
<sysinclude>$(BOOST_ROOT)
# make sure the names of the libraries are correctly named:
common-variant-tag
:
debug release
;
lib link_test : link_test.cpp
:
<sysinclude>$(BOOST_ROOT)
# make sure the names of the libraries are correctly named:
common-variant-tag
:
debug release
;
stage stage/lib : <lib>link_test <dll>link_test
:
# copy to a path rooted at BOOST_ROOT:
<locate>$(BOOST_ROOT)
# make sure the names of the libraries are correctly named:
common-variant-tag
# add this target to the "stage" and "all" psuedo-targets:
<target>stage
<target>all
:
debug release
;