qga-vss: always build qga-vss.tlb when qga-vss.dll is built

Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Message-Id: <20220428181541.300619-1-kkostiuk@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Konstantin Kostiuk 2022-04-28 21:15:41 +03:00 committed by Paolo Bonzini
parent 158bb2249e
commit f780a3f480
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,6 @@ qga_vss = shared_module(
]
)
all_qga += qga_vss
if midl.found()
gen_tlb = custom_target('gen-tlb',
input: 'qga-vss.idl',
@ -36,3 +34,5 @@ else
output: 'qga-vss.tlb',
command: [widl, '-t', '@INPUT@', '-o', '@OUTPUT@'])
endif
all_qga += [ qga_vss, gen_tlb ]