mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
319 B
18 lines
319 B
![]()
3 years ago
|
vacuumlo = executable('vacuumlo',
|
||
|
['vacuumlo.c'],
|
||
|
dependencies: [frontend_code, libpq],
|
||
|
kwargs: default_bin_args,
|
||
|
)
|
||
|
contrib_targets += vacuumlo
|
||
|
|
||
|
tests += {
|
||
|
'name': 'vacuumlo',
|
||
|
'sd': meson.current_source_dir(),
|
||
|
'bd': meson.current_build_dir(),
|
||
|
'tap': {
|
||
|
'tests': [
|
||
|
't/001_basic.pl',
|
||
|
],
|
||
|
},
|
||
|
}
|