-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQLCipher-Amalgamation.podspec.json
65 lines (65 loc) · 2.12 KB
/
SQLCipher-Amalgamation.podspec.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"authors": "Comm Technologies, Inc.",
"default_subspecs": "standard",
"description": "SQLCipher sources amalgamation file for using in Xcode projects.",
"homepage": "https://github.com/CommE2E/sqlcipher-amalgamation",
"license": "MIT",
"name": "SQLCipher-Amalgamation",
"platforms": {
"ios": "11.0"
},
"requires_arc": false,
"source": {
"git": "https://github.com/CommE2E/sqlcipher-amalgamation.git",
"tag": "v4.5.5-e"
},
"summary": "Full Database Encryption for SQLite.",
"version": "4.5.5-e",
"module_name": "SQLCipher",
"dependencies": {
"OpenSSL-Universal": []
},
"frameworks": [
"Foundation"
],
"subspecs": [
{
"compiler_flags": [
"-DNDEBUG",
"-DSQLITE_HAS_CODEC",
"-DSQLITE_TEMP_STORE=2",
"-DSQLITE_ENABLE_SESSION",
"-DSQLITE_ENABLE_PREUPDATE_HOOK",
"-DSQLITE_ENABLE_FTS5"
],
"name": "common",
"source_files": "src/sqlite3.{h,c}",
"header_dir": "src",
"public_header_files": "src/sqlite3.h",
"xcconfig": {
"USE_HEADERMAP": "YES",
"GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_HAS_CODEC=1 SQLITE_TEMP_STORE=2",
"OTHER_CFLAGS": "$(inherited) -DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2 -DSQLCIPHER_CRYPTO_OPENSSL -DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK -DSQLITE_ENABLE_FTS5"
},
"user_target_xcconfig": {
"HEADER_SEARCH_PATHS": "$(SRCROOT)/../node_modules/@commapp/sqlcipher-amalgamation/src"
}
},
{
"dependencies": {
"SQLCipher-Amalgamation/common": []
},
"name": "standard"
},
{
"compiler_flags": "",
"dependencies": {
"SQLCipher-Amalgamation/common": []
},
"name": "unlock_notify",
"xcconfig": {
"OTHER_CFLAGS": "$(inherited)"
}
}
]
}