plugins: make plugins shared modules again

This reverts the main part of commit 4a264252a7.

As plugins are the prime use case for `shared_module`
getting rid of the warning from meson about linking against shared modules
weighs less heavy.
This commit is contained in:
Evangelos Ribeiro Tzaras
2021-04-09 09:23:10 +02:00
parent 367ca081a2
commit e5dc3f06ce
4 changed files with 4 additions and 8 deletions

View File

@@ -46,11 +46,10 @@ mm_sources = files(
]
)
calls_mm = shared_library(
calls_mm = shared_module(
'mm',
mm_sources,
dependencies: mm_deps,
link_args: '-Wl,--unresolved-symbols=ignore-in-object-files',
include_directories: src_include,
install: true,
install_dir: mm_install_dir