postgresql/contrib/tablefunc/meson.build

25 lines
391 B
Meson

tablefunc = shared_module('tablefunc',
files(
'tablefunc.c',
),
kwargs: contrib_mod_args,
)
contrib_targets += tablefunc
install_data(
'tablefunc--1.0.sql',
'tablefunc.control',
kwargs: contrib_data_args,
)
tests += {
'name': 'tablefunc',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'regress': {
'sql': [
'tablefunc',
],
},
}