summaryrefslogtreecommitdiff
path: root/contrib/dict_int/meson.build
blob: f00e80856198ad0053e1de8270dd96aa92cbd1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
dict_int = shared_module('dict_int',
  files('dict_int.c'),
  kwargs: contrib_mod_args,
)
contrib_targets += dict_int

install_data(
  'dict_int.control',
  'dict_int--1.0.sql',
  kwargs: contrib_data_args,
)

tests += {
  'name': 'dict_int',
  'sd': meson.current_source_dir(),
  'bd': meson.current_build_dir(),
  'regress': {
    'sql': [
      'dict_int',
    ],
  },
}