mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
42 lines
707 B
Meson
42 lines
707 B
Meson
if not have_tcg
|
|
subdir_done()
|
|
endif
|
|
|
|
tcg_ss = ss.source_set()
|
|
|
|
tcg_ss.add(files(
|
|
'cpu-exec.c',
|
|
'cpu-exec-common.c',
|
|
'tcg-runtime.c',
|
|
'tcg-runtime-gvec.c',
|
|
'tb-maint.c',
|
|
'tcg-all.c',
|
|
'tcg-stats.c',
|
|
'translate-all.c',
|
|
'translator.c',
|
|
))
|
|
if get_option('plugins')
|
|
tcg_ss.add(files('plugin-gen.c'))
|
|
endif
|
|
|
|
tcg_ss.add(when: 'CONFIG_VTUNE_JITPROFILING', if_true: [vtune_jitprofiling])
|
|
|
|
user_ss.add_all(tcg_ss)
|
|
system_ss.add_all(tcg_ss)
|
|
|
|
user_ss.add(files(
|
|
'user-exec.c',
|
|
'user-exec-stub.c',
|
|
))
|
|
|
|
system_ss.add(files(
|
|
'cputlb.c',
|
|
'icount-common.c',
|
|
'monitor.c',
|
|
'tcg-accel-ops.c',
|
|
'tcg-accel-ops-icount.c',
|
|
'tcg-accel-ops-mttcg.c',
|
|
'tcg-accel-ops-rr.c',
|
|
'watchpoint.c',
|
|
))
|