summaryrefslogtreecommitdiffstats
path: root/src/include/nodes/meson.build
blob: 626dc696d51f15bfafc19f273aba2ffc850cb4ce (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright (c) 2022-2023, PostgreSQL Global Development Group

node_support_input_i = [
  'nodes/nodes.h',
  'nodes/primnodes.h',
  'nodes/parsenodes.h',
  'nodes/pathnodes.h',
  'nodes/plannodes.h',
  'nodes/execnodes.h',
  'access/amapi.h',
  'access/sdir.h',
  'access/tableam.h',
  'access/tsmapi.h',
  'commands/event_trigger.h',
  'commands/trigger.h',
  'executor/tuptable.h',
  'foreign/fdwapi.h',
  'nodes/bitmapset.h',
  'nodes/extensible.h',
  'nodes/lockoptions.h',
  'nodes/miscnodes.h',
  'nodes/replnodes.h',
  'nodes/supportnodes.h',
  'nodes/value.h',
  'utils/rel.h',
]

node_support_input = []
foreach i : node_support_input_i
  node_support_input += meson.source_root() / 'src' / 'include' / i
endforeach

node_support_output = [
  'nodetags.h',
  'outfuncs.funcs.c', 'outfuncs.switch.c',
  'readfuncs.funcs.c', 'readfuncs.switch.c',
  'copyfuncs.funcs.c', 'copyfuncs.switch.c',
  'equalfuncs.funcs.c', 'equalfuncs.switch.c',
  'queryjumblefuncs.funcs.c', 'queryjumblefuncs.switch.c',
]
node_support_install = [
  dir_include_server / 'nodes',
  false, false,
  false, false,
  false, false,
  false, false,
  false, false,
]

generated_nodes = custom_target('nodetags.h',
  input: node_support_input,
  output: node_support_output,
  depend_files: catalog_pm,
  command: [
    perl, files('../../backend/nodes/gen_node_support.pl'),
    '-o', '@OUTDIR@',
    '@INPUT@'],
  install: true,
  install_dir: node_support_install,
)
generated_headers += generated_nodes[0]

# autoconf generates the file there, ensure we get a conflict
generated_sources_ac += {'src/backend/nodes': node_support_output + ['node-support-stamp']}
generated_sources_ac += {'src/include/nodes': ['header-stamp']}