We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cce7095 commit 47c606eCopy full SHA for 47c606e
subprojects/packagefiles/sqlite3/meson.build
@@ -28,6 +28,13 @@ sqlite_args = [
28
'-DSQLITE_SECURE_DELETE',
29
]
30
31
+if get_option('strict')
32
+ sqlite_args += [
33
+ '-DSQLITE_LIKE_DOESNT_MATCH_BLOBS',
34
+ '-DSQLITE_STRICT_SUBTYPE=1',
35
+ ]
36
+endif
37
+
38
if host_machine.system() == 'windows'
39
if get_option('default_library') != 'static'
40
sqlite_args += ['-DSQLITE_API=__declspec(dllexport)']
subprojects/packagefiles/sqlite3/meson_options.txt
@@ -0,0 +1,6 @@
1
+option(
2
+ 'strict',
3
+ description: 'Enable extra checks',
4
+ type: 'boolean',
5
+ value: true
6
+)
0 commit comments