blob: 0a20cb10222b212f6ec2a73d8dca7197d8441d44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# file : build/bootstrap.build
# license : MIT; see accompanying LICENSE file
project = build2-toolchain
amalgamation = # Disable amalgamation.
# Note: list them (mostly) explicitly without using wildcards to handle stray
# subdirectories in the root (debian/, installation location, etc).
#
subprojects += libbutl/ build2/ libbpkg/ bpkg/ bdep/
subprojects += libbuild2-*/
subprojects += tests/*/
using version
using config
using dist
using test # Note: needed for dist to work in subprojects with tests.
using install
|