2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-27 06:42:18 +00:00
Files
build/test/prebuilt/ext/jamfile2.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

18 lines
294 B
Plaintext

import modules ;
LIBNAME = [ modules.peek : LIBNAME ] ;
project ext ;
lib a :
: <file>debug/$(LIBNAME:E=LIBNAME-not-defined) <variant>debug
:
: <include>debug
;
lib a :
: <file>release/$(LIBNAME:E=LIBNAME-not-defined) <variant>release
:
: <include>release
;