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.
17 lines
314 B
17 lines
314 B
![]()
3 years ago
|
auto_explain = shared_module('auto_explain',
|
||
|
files('auto_explain.c'),
|
||
|
kwargs: contrib_mod_args,
|
||
|
)
|
||
|
contrib_targets += auto_explain
|
||
|
|
||
|
tests += {
|
||
|
'name': 'auto_explain',
|
||
|
'sd': meson.current_source_dir(),
|
||
|
'bd': meson.current_build_dir(),
|
||
|
'tap': {
|
||
|
'tests': [
|
||
|
't/001_auto_explain.pl',
|
||
|
],
|
||
|
},
|
||
|
}
|