blob: 8384b6e3b2afc83ae2fc838b6758842e9b19960c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
libpq_pipeline = executable('libpq_pipeline',
files(
'libpq_pipeline.c',
),
dependencies: [frontend_code, libpq],
kwargs: default_bin_args + {
'install': false,
},
)
testprep_targets += libpq_pipeline
tests += {
'name': 'libpq_pipeline',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'tap': {
'tests': [
't/001_libpq_pipeline.pl',
],
},
}
|