From eb0a13a804cb4fe2c685e6711eb5e651deb62b5f Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 5 Mar 2025 16:56:28 -0500 Subject: [PATCH] build(const): added const_dep --- src/const/meson.build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/const/meson.build b/src/const/meson.build index f90b474..a955c7e 100644 --- a/src/const/meson.build +++ b/src/const/meson.build @@ -12,8 +12,13 @@ libconst = library('const', const_sources, include_directories: include_directories('public'), cpp_args: ['-fvisibility=default'], - dependencies: [const_dep], + dependencies: [const_data_dep], install : true) +const_dep = declare_dependency( + include_directories: include_directories('public'), + link_with: libconst, +) + # Make headers accessible install_headers(const_headers, subdir : '4DSSE/const') \ No newline at end of file