[Add] TensorFlowLiteSwift 0.0.1-nightly.20241221
[CocoaPods.git] / Specs / b / 6 / 8 / TXTDB / 1.0.1 / TXTDB.podspec.json
blob45f6a31b07675a8b2034e46ffc345c08734418f5
2   "name": "TXTDB",
3   "version": "1.0.1",
4   "summary": "A lightweight sqlite database with ORM",
5   "homepage": "https://gitlab.p1staff.com/ios/iOS-TXTDB",
6   "license": "MIT",
7   "authors": {
8     "yuhan": "amazeyh2015@163.com"
9   },
10   "platforms": {
11     "ios": "8.0"
12   },
13   "source": {
14     "git": "https://gitlab.p1staff.com/ios/iOS-TXTDB.git",
15     "tag": "1.0.1"
16   },
17   "source_files": "TXTDB/TXTDB.h",
18   "public_header_files": "TXTDB/TXTDB.h",
19   "xcconfig": {
20     "OTHER_CFLAGS": "$(inherited) -DSQLITE_HAS_CODEC -DSQLITE_TEMP_STORE=2 -DSQLITE_THREADSAFE -DSQLCIPHER_CRYPTO_CC"
21   },
22   "deprecated": true,
23   "subspecs": [
24     {
25       "name": "SQLCipher",
26       "source_files": "TXTDB/src/SQLCipher/*.{h,c}",
27       "public_header_files": "TXTDB/src/SQLCipher/*.h"
28     },
29     {
30       "name": "FMDB",
31       "dependencies": {
32         "TXTDB/SQLCipher": [
34         ]
35       },
36       "source_files": "TXTDB/src/FMDB/*.{h,m}",
37       "public_header_files": "TXTDB/src/FMDB/*.h"
38     },
39     {
40       "name": "Database",
41       "dependencies": {
42         "TXTDB/FMDB": [
44         ]
45       },
46       "source_files": [
47         "TXTDB/src/ORM/*.h",
48         "TXTDB/src/ORM/**/*.{h,m}",
49         "TXTDB/src/CRUD/*.h",
50         "TXTDB/src/CRUD/**/*.{h,m}",
51         "TXTDB/src/Engine/*.{h,m}",
52         "TXTDB/src/Database/*.{h,m}"
53       ],
54       "public_header_files": [
55         "TXTDB/src/ORM/*.h",
56         "TXTDB/src/ORM/**/*.h",
57         "TXTDB/src/CRUD/*.h",
58         "TXTDB/src/CRUD/**/*.h",
59         "TXTDB/src/Engine/*.h",
60         "TXTDB/src/Database/*.h"
61       ]
62     }
63   ]