forked from azadkuh/sqlite-amalgamation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlite3_config.h.in
35 lines (29 loc) · 974 Bytes
/
sqlite3_config.h.in
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
/* the compile-time options used to build SQLite3 library
*
* https://github.com/azadkuh/sqlite-amalgamation
*/
#ifndef SQLITE3_CONFIG_H
#define SQLITE3_CONFIG_H
#cmakedefine SQLITE_ENABLE_DBSTAT_VTAB
#cmakedefine SQLITE_ENABLE_FTS3
#cmakedefine SQLITE_ENABLE_FTS4
#cmakedefine SQLITE_ENABLE_FTS5
#cmakedefine SQLITE_ENABLE_GEOPOLY
#cmakedefine SQLITE_ENABLE_ICU
#cmakedefine SQLITE_ENABLE_JSON1
#cmakedefine SQLITE_ENABLE_RBU
#cmakedefine SQLITE_ENABLE_RTREE
#cmakedefine SQLITE_RECOMMENDED_OPTIONS
#if defined(SQLITE_RECOMMENDED_OPTIONS)
# define SQLITE_DQS=0
# define SQLITE_DEFAULT_MEMSTATUS=0
# define SQLITE_DEFAULT_WAL_SYNCHRONOUS=1
# define SQLITE_LIKE_DOESNT_MATCH_BLOBS
# define SQLITE_MAX_EXPR_DEPTH=0
# define SQLITE_OMIT_DECLTYPE
# define SQLITE_OMIT_DEPRECATED
# define SQLITE_OMIT_PROGRESS_CALLBACK
# define SQLITE_OMIT_SHARED_CACHE
# define SQLITE_USE_ALLOCA
#endif /* SQLITE_RECOMMENDED_OPTIONS */
#endif /* SQLITE3_CONFIG_H */