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