we're quite surprised that this hasn't caused problems sooner. Change-Id: I33b779c1563e15db715c7fd4d3cb6516cf34391d
26 lines
622 B
Meson
26 lines
622 B
Meson
libplugintest = shared_module(
|
|
'plugintest',
|
|
'plugintest.cc',
|
|
dependencies : [
|
|
liblix.partial_dependency(includes : true, compile_args : true),
|
|
],
|
|
build_by_default : false,
|
|
link_args : plugin_link_args,
|
|
)
|
|
|
|
libplugintestfail_link_args = []
|
|
if is_linux
|
|
libplugintestfail_link_args = ['-Wl,-z,now']
|
|
endif
|
|
|
|
libplugintestfail = shared_module(
|
|
'plugintestfail',
|
|
'plugintestfail.cc',
|
|
dependencies : [
|
|
liblix.partial_dependency(includes : true, compile_args : true),
|
|
],
|
|
cpp_args : ['-DMISSING_REFERENCE'],
|
|
link_args : plugin_link_args + libplugintestfail_link_args,
|
|
build_by_default : false,
|
|
)
|