subdir('meson/fuzz-targets') # Fuzzing Targets
subdir('meson/python-venv') # Python Venv
+# Sqlite3
+opt_sqlite3 = get_option('sqlite3')
+# TODO Use Sqlite3
+
# Boost Program Options library
dep_boost_program_options = dependency('boost', modules: ['program_options'], required: true)
summary('Boost Program Options', dep_boost_program_options.found(), bool_yn: true, section: 'Boost')
option('backend-unit-tests', type: 'boolean', value: false, description: 'Enable building backend unit tests')
option('reproducible', type: 'boolean', value: false, description: 'Create reproducible builds. Use this only if you are a distribution maintainer and need reproducible builds. If you compile PowerDNS yourself, leave this disabled, as it might make debugging harder')
option('fuzz-targets', type: 'boolean', value: false, description: 'Enable fuzzing targets')
+option('sqlite3', type: 'boolean', value: false, description: 'Include the sqlite3 driver')