mirror of
https://github.com/boostorg/build.git
synced 2026-01-27 06:42:18 +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).
18 lines
294 B
Plaintext
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
|
|
;
|
|
|