2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-26 18:32:33 +00:00
Files
build/test/prebuilt/ext/jamfile3.jam
Nikita Kniazev d1d7a6a16b MSYS2 fixes and CI (#298)
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).
2023-07-16 08:33:13 -05:00

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
;