From 3880f28512f62261468fa4d89d3801a4ec72d4d8 Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 30 Apr 2025 11:44:53 -0400 Subject: [PATCH] build(meson): switched almost all intermediate targets to shared libraries --- src/probe/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/probe/meson.build b/src/probe/meson.build index cf6accf..186586b 100644 --- a/src/probe/meson.build +++ b/src/probe/meson.build @@ -35,7 +35,7 @@ dependencies = [ ] # Define the liblogger library so it can be linked against by other parts of the build system -libprobe = static_library('probe', +libprobe = library('probe', probe_sources, include_directories: include_directories('public'), cpp_args: ['-fvisibility=default'],