summaryrefslogtreecommitdiff
path: root/contrib/fuzzystrmatch/meson.build
blob: ec278a6211ea9afa55c944dc7cfb347e6d9c3dd2 (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
25
26
fuzzystrmatch = shared_module('fuzzystrmatch',
  files(
    'fuzzystrmatch.c',
    'dmetaphone.c'
  ),
  kwargs: contrib_mod_args,
)
contrib_targets += fuzzystrmatch

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

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