[Add] APSDKMediationMintegral 0.0.19
[CocoaPods.git] / Specs / f / 4 / e / FMDB / 2.7.12 / FMDB.podspec.json
blobd9971cce9541c13ef6118b02b6b43551b238e084
2   "name": "FMDB",
3   "version": "2.7.12",
4   "summary": "A Cocoa / Objective-C wrapper around SQLite.",
5   "homepage": "https://github.com/ccgus/fmdb",
6   "license": "MIT",
7   "authors": {
8     "August Mueller": "gus@flyingmeat.com"
9   },
10   "source": {
11     "git": "https://github.com/ccgus/fmdb.git",
12     "tag": "2.7.12"
13   },
14   "requires_arc": true,
15   "platforms": {
16     "ios": "12.0",
17     "osx": "10.13",
18     "watchos": "7.0",
19     "tvos": "12.0"
20   },
21   "cocoapods_version": ">= 1.12.0",
22   "default_subspecs": "standard",
23   "subspecs": [
24     {
25       "name": "Core",
26       "source_files": "src/fmdb/FM*.{h,m}",
27       "exclude_files": "src/fmdb.m",
28       "header_dir": "fmdb",
29       "resource_bundles": {
30         "FMDB_Privacy": "privacy/PrivacyInfo.xcprivacy"
31       }
32     },
33     {
34       "name": "standard",
35       "dependencies": {
36         "FMDB/Core": [
38         ]
39       },
40       "libraries": "sqlite3"
41     },
42     {
43       "name": "FTS",
44       "dependencies": {
45         "FMDB/standard": [
47         ]
48       },
49       "source_files": "src/extra/fts3/*.{h,m}"
50     },
51     {
52       "name": "standalone",
53       "dependencies": {
54         "FMDB/Core": [
56         ],
57         "sqlite3": [
58           "~> 3.46"
59         ]
60       },
61       "xcconfig": {
62         "OTHER_CFLAGS": "$(inherited) -DFMDB_SQLITE_STANDALONE"
63       }
64     },
65     {
66       "name": "standalone-fts",
67       "dependencies": {
68         "FMDB/Core": [
70         ],
71         "sqlite3/fts": [
72           "~> 3.46"
73         ]
74       },
75       "xcconfig": {
76         "OTHER_CFLAGS": "$(inherited) -DFMDB_SQLITE_STANDALONE"
77       },
78       "source_files": "src/extra/fts3/*.{h,m}"
79     },
80     {
81       "name": "SQLCipher",
82       "dependencies": {
83         "FMDB/Core": [
85         ],
86         "SQLCipher": [
87           "~> 4.6"
88         ]
89       },
90       "xcconfig": {
91         "OTHER_CFLAGS": "$(inherited) -DSQLITE_HAS_CODEC -DHAVE_USLEEP=1 -DSQLCIPHER_CRYPTO",
92         "HEADER_SEARCH_PATHS": "SQLCipher"
93       }
94     }
95   ]