-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
49 lines (49 loc) · 1.19 KB
/
library.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "teensy41SQLite",
"version": "0.1.3",
"description": "arduino teensy 4.1 sqlite vfs",
"keywords": "teensy, sqlite",
"repository":
{
"type": "git",
"url": "https://github.com/SamHalvoe/teensy41SQLite.git"
},
"authors":
[
{
"name": "Sam Halvoe",
"email": "sam.halvoe@outlook.de",
"maintainer": true
}
],
"license": "MIT",
"dependencies": {
},
"frameworks": "arduino",
"platforms": "teensy",
"build": {
"libLDFMode": "deep+",
"build_scr_filter": [
"-<**/test_main.cpp>"
],
"flags": [
"-D SQLITE_OS_OTHER=1",
"-D SQLITE_THREADSAFE=0",
"-D SQLITE_TEMP_STORE=3",
"-D SQLITE_DEFAULT_MMAP_SIZE",
"-D SQLITE_DEFAULT_MEMSTATUS=0",
"-D SQLITE_MAX_EXPR_DEPTH=0",
"-D SQLITE_DQS=0",
"-D SQLITE_STRICT_SUBTYPE=1",
"-D SQLITE_OMIT_DEPRECATED=1",
"-D SQLITE_OMIT_SHARED_CACHE=1",
"-D SQLITE_OMIT_PROGRESS_CALLBACK=1",
"-D SQLITE_OMIT_AUTOINIT=1",
"-D SQLITE_OMIT_DECLTYPE=1",
"-D SQLITE_OMIT_LOAD_EXTENSION=1",
"-D SQLITE_OMIT_UTF16=1",
"-D SQLITE_OMIT_WAL=1",
"-I include/sqlite3"
]
}
}