2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 13:42:14 +00:00
Files
build/test/prebuilt/ext/Jamfile2
Vladimir Prus 7286893ac4 Make prebuilt.py work on NT/MinGW.
[SVN r16847]
2003-01-10 09:40:58 +00:00

23 lines
336 B
Plaintext

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