we're quite surprised that this hasn't caused problems sooner. Change-Id: I33b779c1563e15db715c7fd4d3cb6516cf34391d
14 lines
425 B
Meson
14 lines
425 B
Meson
plugin_mtls_store = shared_module(
|
|
'plugin_mtls_store',
|
|
'plugin_mtls_store.cc',
|
|
# don't link liblix* into plugins (host process provides them at runtime).
|
|
# Explicitly link curl so it binds to Nix-store libcurl, not /usr/lib/libcurl.
|
|
dependencies : [
|
|
liblix.partial_dependency(includes : true, compile_args : true),
|
|
curl,
|
|
],
|
|
install : false,
|
|
build_by_default : true,
|
|
link_args : plugin_link_args,
|
|
)
|