blob: 49aa05b71d52918704dbb55b71ac481cd33168d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# file : sqlite/native/buildfile
# license : GNU GPL v2; see accompanying LICENSE file
assert ($sqlite && !$multi || $build.meta_operation == 'dist') \
"sqlite should be configured via config.odb_tests.database variable as a single database"
import libs = libodb-sqlite%lib{odb-sqlite}
import libs += lib{common}
exe{driver}: {hxx cxx}{*} $libs testscript
cxx.poptions =+ "-I$out_base" "-I$src_base"
|