summaryrefslogtreecommitdiff
path: root/src/backend/tsearch/meson.build
blob: fb612f94d55065374c88571f4dae4fede9a75320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) 2022-2023, PostgreSQL Global Development Group

backend_sources += files(
  'dict.c',
  'dict_ispell.c',
  'dict_simple.c',
  'dict_synonym.c',
  'dict_thesaurus.c',
  'regis.c',
  'spell.c',
  'to_tsany.c',
  'ts_locale.c',
  'ts_parse.c',
  'ts_selfuncs.c',
  'ts_typanalyze.c',
  'ts_utils.c',
  'wparser.c',
  'wparser_def.c',
)

install_subdir('dicts',
  install_dir: dir_data / 'tsearch_data',
  strip_directory: true)