summaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorAdam Szmigin <smidge@xsco.net>2020-09-19 13:21:35 +0100
committerAdam Szmigin <smidge@xsco.net>2020-09-23 22:46:38 +0100
commit535033da189df1b54cfe70ccc99860074021fe12 (patch)
treec54ece9bdf024667757362e40805c1dcbbe96b34 /meson_options.txt
parent457d52e642a249126d8d55feb393bd993ad24690 (diff)
Allow building with embedded SQLite
* Meson and CMake builds take build option for system SQLite or embedded. * Unit tests no longer have direct SQLite dependency.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..538b5db
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,2 @@
+option('system_sqlite', type: 'boolean', value: true,
+ description: 'Use a system-wide installation of SQLite, rather than the built-in one.')