2022-02-01 21:23:33 +01:00
|
|
|
link_args = cc.get_supported_link_arguments([
|
|
|
|
'-fstack-protector-all',
|
|
|
|
'-fstack-protector-strong',
|
|
|
|
'-Wl,--add-stdcall-alias',
|
|
|
|
'-Wl,--enable-stdcall-fixup'
|
|
|
|
])
|
2019-07-15 11:06:20 +02:00
|
|
|
|
2022-02-01 21:23:33 +01:00
|
|
|
qga_vss = shared_module(
|
|
|
|
'qga-vss',
|
2022-05-12 17:49:06 +02:00
|
|
|
['requester.cpp', 'provider.cpp', 'install.cpp', genh],
|
2022-02-01 21:23:33 +01:00
|
|
|
name_prefix: '',
|
|
|
|
cpp_args: ['-Wno-unknown-pragmas', '-Wno-delete-non-virtual-dtor', '-Wno-non-virtual-dtor'],
|
|
|
|
link_args: link_args,
|
|
|
|
vs_module_defs: 'qga-vss.def',
|
|
|
|
dependencies: [
|
2022-02-02 10:14:49 +01:00
|
|
|
glib,
|
|
|
|
socket,
|
2022-02-01 21:23:33 +01:00
|
|
|
cc.find_library('ole32'),
|
|
|
|
cc.find_library('oleaut32'),
|
|
|
|
cc.find_library('shlwapi'),
|
|
|
|
cc.find_library('uuid'),
|
|
|
|
cc.find_library('intl')
|
|
|
|
]
|
|
|
|
)
|
2020-01-28 15:06:16 +01:00
|
|
|
|
2019-07-15 09:39:13 +02:00
|
|
|
if midl.found()
|
|
|
|
gen_tlb = custom_target('gen-tlb',
|
|
|
|
input: 'qga-vss.idl',
|
|
|
|
output: 'qga-vss.tlb',
|
2022-02-01 13:21:47 +01:00
|
|
|
command: [midl, '@INPUT@', '/tlb', '@OUTPUT@'])
|
2022-02-01 09:55:21 +01:00
|
|
|
else
|
2022-02-01 09:53:15 +01:00
|
|
|
gen_tlb = custom_target('gen-tlb',
|
|
|
|
input: 'qga-vss.idl',
|
|
|
|
output: 'qga-vss.tlb',
|
|
|
|
command: [widl, '-t', '@INPUT@', '-o', '@OUTPUT@'])
|
2019-07-15 09:39:13 +02:00
|
|
|
endif
|
2022-04-28 20:15:41 +02:00
|
|
|
|
|
|
|
all_qga += [ qga_vss, gen_tlb ]
|