xref: /openbmc/qemu/tcg/meson.build (revision 96a664d05c238ea1b64af2394b58e956fe0afe26)
1tcg_ss = ss.source_set()
2
3tcg_ss.add(files(
4  'optimize.c',
5  'region.c',
6  'tcg.c',
7  'tcg-common.c',
8  'tcg-op.c',
9  'tcg-op-gvec.c',
10  'tcg-op-vec.c',
11))
12tcg_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('tci.c'))
13
14specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss)
15