docs/interop/bitmaps: Clean up a reference to qemu-qmp-ref
[qemu/kevin.git] / accel / tcg / meson.build
blobc15ac9ac8fb843d6267031e544e121e4a5cfca17
1 tcg_ss = ss.source_set()
2 common_ss.add(when: 'CONFIG_TCG', if_true: files(
3   'cpu-exec-common.c',
4 ))
5 tcg_ss.add(files(
6   'tcg-all.c',
7   'cpu-exec.c',
8   'tb-maint.c',
9   'tcg-runtime-gvec.c',
10   'tcg-runtime.c',
11   'translate-all.c',
12   'translator.c',
14 tcg_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-exec.c'))
15 tcg_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_false: files('user-exec-stub.c'))
16 if get_option('plugins')
17   tcg_ss.add(files('plugin-gen.c'))
18 endif
19 tcg_ss.add(when: libdw, if_true: files('debuginfo.c'))
20 if host_os == 'linux'
21   tcg_ss.add(files('perf.c'))
22 endif
23 specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss)
25 specific_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: files(
26   'cputlb.c',
27   'watchpoint.c',
30 system_ss.add(when: ['CONFIG_TCG'], if_true: files(
31   'icount-common.c',
32   'monitor.c',
35 tcg_module_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: files(
36   'tcg-accel-ops.c',
37   'tcg-accel-ops-mttcg.c',
38   'tcg-accel-ops-icount.c',
39   'tcg-accel-ops-rr.c',