2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00
Files
build/test/prebuilt/ext/Jamfile2
Vladimir Prus 9efcd4132f Restore prebuilt.py to life on NT/gcc.
[SVN r18228]
2003-04-10 15:10:37 +00:00

31 lines
423 B
Plaintext

import modules ;
local dll-suffix = so ;
if [ modules.peek : OS ] in CYGWIN NT
{
if $toolset = gcc
{
dll-suffix = dll ;
}
else
{
dll-suffix = lib ;
}
}
project ext ;
lib a :
: <file>bin/$toolset/debug/a.$(dll-suffix) <variant>debug
:
: <include>debug
;
lib a :
: <file>bin/$toolset/release/a.$(dll-suffix) <variant>release
:
: <include>release
;