mirror of
https://github.com/boostorg/build.git
synced 2026-01-26 18:32:33 +00:00
I've setup CI on GHA because it is much more convenient using their action script. This covers different Mingw setups and it does not fail on PCH tests like Mingw-w64 one installed by default on GHA/Azure (either because GCC exe there was built without ASLR or is a new recent version which supports PCH relocation).
26 lines
537 B
Plaintext
26 lines
537 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 ;
|
|
LIBNAME = [ modules.peek : LIBNAME ] ;
|
|
|
|
project ext ;
|
|
|
|
# Assumed bjam was invoked from the project root
|
|
local pwd = [ PWD ] ;
|
|
|
|
lib a :
|
|
: <file>$(pwd)/ext/debug/$(LIBNAME:E=LIBNAME-not-defined) <variant>debug
|
|
:
|
|
: <include>debug
|
|
;
|
|
|
|
lib a :
|
|
: <file>$(pwd)/ext/release/$(LIBNAME:E=LIBNAME-not-defined) <variant>release
|
|
:
|
|
: <include>release
|
|
;
|
|
|