blob: 7c5de134ac0f73d4aa2d5fe3c7a44785a3410d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pg_resetwal = executable('pg_resetwal',
files('pg_resetwal.c'),
dependencies: [frontend_code],
kwargs: default_bin_args,
)
bin_targets += pg_resetwal
tests += {
'name': 'pg_resetwal',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'tap': {
'tests': [
't/001_basic.pl',
't/002_corrupted.pl',
],
},
}
subdir('po', if_found: libintl)
|