Merge tag 'pull-aspeed-20220714' of https://github.com/legoater/qemu into staging
[qemu/ar7.git] / qapi / meson.build
blobfd5c93d643a5479cf57f9b3a644ed8cdae4f7e56
1 util_ss.add(files(
2   'opts-visitor.c',
3   'qapi-clone-visitor.c',
4   'qapi-dealloc-visitor.c',
5   'qapi-forward-visitor.c',
6   'qapi-util.c',
7   'qapi-visit-core.c',
8   'qobject-input-visitor.c',
9   'qobject-output-visitor.c',
10   'string-input-visitor.c',
11   'string-output-visitor.c',
13 if have_system
14   util_ss.add(files('qapi-type-helpers.c'))
15 endif
16 if have_system or have_tools
17   util_ss.add(files(
18     'qmp-dispatch.c',
19     'qmp-event.c',
20     'qmp-registry.c',
21   ))
22 endif
24 qapi_all_modules = [
25   'authz',
26   'block',
27   'block-core',
28   'block-export',
29   'char',
30   'common',
31   'compat',
32   'control',
33   'crypto',
34   'dump',
35   'error',
36   'introspect',
37   'job',
38   'machine',
39   'machine-target',
40   'migration',
41   'misc',
42   'misc-target',
43   'net',
44   'pragma',
45   'qom',
46   'replay',
47   'run-state',
48   'sockets',
49   'stats',
50   'trace',
51   'transaction',
52   'yank',
54 if have_system
55   qapi_all_modules += [
56     'acpi',
57     'audio',
58     'qdev',
59     'pci',
60     'rdma',
61     'rocker',
62     'tpm',
63   ]
64 endif
65 if have_system or have_tools
66   qapi_all_modules += [
67     'ui',
68   ]
69 endif
71 qapi_storage_daemon_modules = [
72   'block-core',
73   'block-export',
74   'char',
75   'common',
76   'control',
77   'crypto',
78   'introspect',
79   'job',
80   'qom',
81   'sockets',
82   'pragma',
83   'transaction',
86 qapi_nonmodule_outputs = [
87   'qapi-introspect.c', 'qapi-introspect.h',
88   'qapi-types.c', 'qapi-types.h',
89   'qapi-visit.h', 'qapi-visit.c',
90   'qapi-commands.h', 'qapi-commands.c',
91   'qapi-init-commands.h', 'qapi-init-commands.c',
92   'qapi-events.h', 'qapi-events.c',
93   'qapi-emit-events.c', 'qapi-emit-events.h',
96 # First build all sources
97 qapi_util_outputs = [
98   'qapi-builtin-types.c', 'qapi-builtin-visit.c',
99   'qapi-builtin-types.h', 'qapi-builtin-visit.h',
102 qapi_inputs = []
103 qapi_specific_outputs = []
104 foreach module : qapi_all_modules
105   qapi_inputs += [ files(module + '.json') ]
106   qapi_module_outputs = [
107     'qapi-types-@0@.c'.format(module),
108     'qapi-types-@0@.h'.format(module),
109     'qapi-visit-@0@.c'.format(module),
110     'qapi-visit-@0@.h'.format(module),
111   ]
112   if have_system or have_tools
113     qapi_module_outputs += [
114       'qapi-events-@0@.c'.format(module),
115       'qapi-events-@0@.h'.format(module),
116       'qapi-commands-@0@.c'.format(module),
117       'qapi-commands-@0@.h'.format(module),
118       'qapi-commands-@0@.trace-events'.format(module),
119     ]
120   endif
121   if module.endswith('-target')
122     qapi_specific_outputs += qapi_module_outputs
123   else
124     qapi_util_outputs += qapi_module_outputs
125   endif
126 endforeach
128 qapi_files = custom_target('shared QAPI source files',
129   output: qapi_util_outputs + qapi_specific_outputs + qapi_nonmodule_outputs,
130   input: [ files('qapi-schema.json') ],
131   command: [ qapi_gen, '-o', 'qapi', '-b', '@INPUT0@' ],
132   depend_files: [ qapi_inputs, qapi_gen_depends ])
134 # Now go through all the outputs and add them to the right sourceset.
135 # These loops must be synchronized with the output of the above custom target.
137 i = 0
138 foreach output : qapi_util_outputs
139   if output.endswith('.h')
140     genh += qapi_files[i]
141   endif
142   if output.endswith('.trace-events')
143     qapi_trace_events += qapi_files[i]
144   endif
145   util_ss.add(qapi_files[i])
146   i = i + 1
147 endforeach
149 foreach output : qapi_specific_outputs + qapi_nonmodule_outputs
150   if output.endswith('.h')
151     genh += qapi_files[i]
152   endif
153   if output.endswith('.trace-events')
154     qapi_trace_events += qapi_files[i]
155   endif
156   specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: qapi_files[i])
157   i = i + 1
158 endforeach