blob: a60d7a18f81962ed8536b332fde730ba07134159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# file : tests/load/buildfile
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
import libs += libbpkg%lib{bpkg}
import libs += libbutl%lib{butl}
import libs += libodb-pgsql%lib{odb-pgsql}
import libs += libodb%lib{odb}
include ../../libbrep/
./: exe{driver} file{loadtab cert *.pem openssl.cnf */**}
exe{driver}: {hxx cxx}{*} ../../libbrep/lib{brep} $libs
# Disable until testscript is implemented.
#
exe{driver}: test = false
# precondition: the environment is setup according to INSTALL-DEV file.
# test:
# ./driver ../../load/brep-load --bpkg ../../../bpkg/bpkg/bpkg ./loadtab
|