mirror of https://gitee.com/openkylin/qemu.git
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
|