mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-18 01:52:05 -05:00
47 lines
781 B
Plaintext
47 lines
781 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 os ;
|
|
|
|
local dll-suffix = so ;
|
|
local prefix = "" ;
|
|
if [ os.name ] in CYGWIN NT
|
|
{
|
|
if [ MATCH ^(gcc) : $toolset ]
|
|
{
|
|
dll-suffix = dll ;
|
|
}
|
|
else
|
|
{
|
|
dll-suffix = lib ;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
prefix = "lib" ;
|
|
}
|
|
if [ MATCH ^(clang-)?(darwin) : $toolset ]
|
|
{
|
|
dll-suffix = dylib ;
|
|
}
|
|
|
|
project ext ;
|
|
|
|
# Assumed bjam was invoked from the project root
|
|
local pwd = [ PWD ] ;
|
|
|
|
lib a :
|
|
: <file>$(pwd)/ext/debug/$(prefix)a.$(dll-suffix) <variant>debug
|
|
:
|
|
: <include>debug
|
|
;
|
|
|
|
lib a :
|
|
: <file>$(pwd)/ext/release/$(prefix)a.$(dll-suffix) <variant>release
|
|
:
|
|
: <include>release
|
|
;
|
|
|