lib/store: rework to use xapian-db / config

Simplifies the implementation.
This commit is contained in:
Dirk-Jan C. Binnema
2023-06-30 23:19:17 +03:00
parent c28fde9155
commit 3791d0c375
4 changed files with 212 additions and 401 deletions

View File

@ -17,7 +17,7 @@
################################################################################
# project setup
project('mu', ['c', 'cpp'],
version: '1.11.7',
version: '1.11.8',
meson_version: '>= 0.56.0',
license: 'GPL-3.0-or-later',
default_options : [
@ -86,7 +86,7 @@ cxx.check_header('charconv', required:true)
# config.h setup
#
config_h_data=configuration_data()
config_h_data.set_quoted('MU_STORE_SCHEMA_VERSION', '467')
config_h_data.set('MU_STORE_SCHEMA_VERSION', 500)
config_h_data.set_quoted('PACKAGE_VERSION', meson.project_version())
config_h_data.set_quoted('PACKAGE_STRING', meson.project_name() + ' ' +
meson.project_version())