blob: 58b2eaf9c03d596fceeb4c6fd175096e4b4a2ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# file : tests/build/root.build
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# We need to configure C++ module to pass the compiler path to some of bdep
# test commands.
#
using cxx
# Setup the bdep that we are testing.
#
import bdep = bdep%exe{bdep}
test{*}: test = $bdep
# Specify the test target for cross-testing.
#
test.target = $cxx.target
|