2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-18 14:02:11 +00:00
Files
build/v2/test/prebuilt/ext/Jamfile3
2005-06-16 07:24:16 +00:00

47 lines
787 B
Plaintext

# This Jamfile is the same as Jamfile2, except that
# it tries to access prebuilt targets using absolute
# paths. It used to be broken on Windows.
import modules ;
local dll-suffix = so ;
local prefix = "" ;
if [ modules.peek : OS ] in CYGWIN NT
{
if $toolset = gcc
{
dll-suffix = dll ;
}
else
{
dll-suffix = lib ;
}
}
else
{
prefix = "lib" ;
}
if $toolset = darwin
{
dll-suffix = dylib ;
}
project ext ;
# Assumed bjam was invoked from the project root
local pwd = [ PWD ] ;
lib a :
: <file>$(pwd)/ext/bin/$toolset/debug/$(prefix)a.$(dll-suffix) <variant>debug
:
: <include>debug
;
lib a :
: <file>$(pwd)/ext/bin/$toolset/release/$(prefix)a.$(dll-suffix) <variant>release
:
: <include>release
;