mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
0d04c4c9de
The check is simply for a POSIX system. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
7 lines
263 B
Meson
7 lines
263 B
Meson
if have_tpm
|
|
softmmu_ss.add(files('tpm_backend.c'))
|
|
softmmu_ss.add(files('tpm_util.c'))
|
|
softmmu_ss.add(when: 'CONFIG_TPM_PASSTHROUGH', if_true: files('tpm_passthrough.c'))
|
|
softmmu_ss.add(when: 'CONFIG_TPM_EMULATOR', if_true: files('tpm_emulator.c'))
|
|
endif
|