From 4fcbcb1d176deb612e220aeead8530e5144b9205 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/config/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/meson.build b/src/config/meson.build index 289b086..f51e06c 100644 --- a/src/config/meson.build +++ b/src/config/meson.build @@ -8,7 +8,7 @@ config_headers = files( ) # Define the libconfig library so it can be linked against by other parts of the build system -libconfig = static_library('config', +libconfig = library('config', config_sources, include_directories: include_directories('public'), cpp_args: ['-fvisibility=default'],