From 3a6206c350d958b052f1f0cf9420c347efac02ef Mon Sep 17 00:00:00 2001 From: Doug Nazar Date: Wed, 21 Dec 2022 03:06:21 -0500 Subject: [PATCH] Fix meson installation Fix include directory name so include files get installed. Flag library for installation on non-Windows platforms. --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 3edeb593..6704bad4 100644 --- a/meson.build +++ b/meson.build @@ -210,7 +210,7 @@ else dependencies: sqlitecpp_deps, # override the default options override_options: sqlitecpp_opts, - # install: true, + install: true, # API version for SQLiteCpp shared library. version: '0',) endif @@ -233,7 +233,7 @@ if get_option('SQLITECPP_BUILD_TESTS') endif install_subdir( - 'include/SQliteCpp', + 'include/SQLiteCpp', install_dir: get_option('includedir')) sqlitecpp_dep = declare_dependency(