summaryrefslogtreecommitdiff
path: root/contrib/tablefunc/meson.build
blob: f4230096c0c908bb30100e6a9f5b657fb0463060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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',
    ],
  },
}