]> git.proxmox.com Git - mirror_qemu.git/blame - tcg/meson.build
Merge tag 'pull-ppc-20220420-2' of https://gitlab.com/danielhb/qemu into staging
[mirror_qemu.git] / tcg / meson.build
CommitLineData
104cc2c0
RH
1tcg_ss = ss.source_set()
2
3tcg_ss.add(files(
4 'optimize.c',
5ff7258c 5 'region.c',
104cc2c0
RH
6 'tcg.c',
7 'tcg-common.c',
8 'tcg-op.c',
9 'tcg-op-gvec.c',
10 'tcg-op-vec.c',
11))
22f15579
RH
12
13if get_option('tcg_interpreter')
14 libffi = dependency('libffi', version: '>=3.0', required: true,
15 method: 'pkg-config', kwargs: static_kwargs)
16 specific_ss.add(libffi)
17 specific_ss.add(files('tci.c'))
18endif
104cc2c0
RH
19
20specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss)