]> git.ipfire.org Git - thirdparty/qemu.git/blame - system/meson.build
tests/qtest : Use `g_assert_cmphex` instead of `g_assert_cmpuint`
[thirdparty/qemu.git] / system / meson.build
CommitLineData
c7b64948 1specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: [files(
5d3ea0e1 2 'arch_init.c',
5d3ea0e1
PB
3 'ioport.c',
4 'memory.c',
e0220bb5 5 'physmem.c',
87e303de 6 'watchpoint.c',
740b1759
CF
7)])
8
de6cd759 9system_ss.add(files(
e0220bb5 10 'balloon.c',
800d4ded 11 'bootdevice.c',
e0220bb5
PMD
12 'cpus.c',
13 'cpu-throttle.c',
14 'cpu-timers.c',
15 'datadir.c',
30ee29fd 16 'dirtylimit.c',
800d4ded 17 'dma-helpers.c',
e0220bb5
PMD
18 'globals.c',
19 'memory_mapping.c',
800d4ded 20 'qdev-monitor.c',
09637edb 21 'qtest.c',
e0220bb5
PMD
22 'rtc.c',
23 'runstate-action.c',
bab46b81 24 'runstate-hmp-cmds.c',
e0220bb5 25 'runstate.c',
0801062c 26 'tpm-hmp-cmds.c',
e0220bb5 27 'vl.c',
d9f24bf5 28), sdl, libpmem, libdaxctl)
800d4ded 29
0d04c4c9 30if have_tpm
de6cd759 31 system_ss.add(files('tpm.c'))
0d04c4c9
PB
32endif
33
de6cd759
PMD
34system_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
35system_ss.add(when: fdt, if_true: files('device_tree.c'))
d0cda6f4
PB
36if host_os == 'linux'
37 system_ss.add(files('async-teardown.c'))
53e8868d 38endif