mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
17 lines
314 B
Meson
17 lines
314 B
Meson
|
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',
|
||
|
],
|
||
|
},
|
||
|
}
|