---
The libscfg header doesn't seem to get installed, this should fix
that.
I'm not sure whether install_subdir is the cleanest way to do this,
but it's what wlroots seems to use.
meson.build | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meson.build b/meson.build
index a82333e..7181bc3 100644
--- a/meson.build
+++ b/meson.build
@@ -19,6 +19,8 @@ add_project_arguments(cc.get_supported_arguments([
'-Wno-unused-parameter',
]), language: 'c')
+install_subdir('include', install_dir: get_option('includedir'))
+
scfg_inc = include_directories('include')
scfg_lib = library(
--
2.33.1
Thanks for the patch! However, I think this will install include/ to
/usr/include/, resulting in a /usr/include/include/ subdir.
I think we can just use install_headers() instead since we have a single one
to install.