[Add] AlibabacloudPolardbx20200202 2.0.0
[CocoaPods.git] / Specs / 4 / 1 / 8 / SQLite.swift / 0.12.2 / SQLite.swift.podspec.json
blobbb36f2668b27ddbdaa75cfd0ae34805a67cf5ade
2   "name": "SQLite.swift",
3   "version": "0.12.2",
4   "summary": "A type-safe, Swift-language layer over SQLite3 for iOS and macOS.",
5   "description": "SQLite.swift provides compile-time confidence in SQL statement syntax and\nintent.",
6   "homepage": "https://github.com/stephencelis/SQLite.swift",
7   "license": "MIT",
8   "authors": {
9     "Stephen Celis": "stephen@stephencelis.com"
10   },
11   "source": {
12     "git": "https://github.com/stephencelis/SQLite.swift.git",
13     "tag": "0.12.2"
14   },
15   "social_media_url": "https://twitter.com/stephencelis",
16   "module_name": "SQLite",
17   "default_subspecs": "standard",
18   "swift_versions": [
19     "4.2",
20     "5",
21     "5"
22   ],
23   "platforms": {
24     "ios": "8.0",
25     "tvos": "9.1",
26     "osx": "10.10",
27     "watchos": "2.2"
28   },
29   "swift_version": "5",
30   "subspecs": [
31     {
32       "name": "standard",
33       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
34       "exclude_files": "Sources/**/Cipher.swift",
35       "private_header_files": "Sources/SQLiteObjc/*.h",
36       "libraries": "sqlite3",
37       "testspecs": [
38         {
39           "name": "tests",
40           "test_type": "unit",
41           "resources": "Tests/SQLiteTests/fixtures/*",
42           "source_files": "Tests/SQLiteTests/*.swift",
43           "platforms": {
44             "ios": "8.0",
45             "tvos": "9.1",
46             "osx": "10.10"
47           }
48         }
49       ]
50     },
51     {
52       "name": "standalone",
53       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
54       "exclude_files": "Sources/**/Cipher.swift",
55       "private_header_files": "Sources/SQLiteObjc/*.h",
56       "xcconfig": {
57         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_STANDALONE"
58       },
59       "dependencies": {
60         "sqlite3": [
62         ]
63       },
64       "testspecs": [
65         {
66           "name": "tests",
67           "test_type": "unit",
68           "resources": "Tests/SQLiteTests/fixtures/*",
69           "source_files": "Tests/SQLiteTests/*.swift",
70           "platforms": {
71             "ios": "8.0",
72             "tvos": "9.1",
73             "osx": "10.10"
74           }
75         }
76       ]
77     },
78     {
79       "name": "SQLCipher",
80       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
81       "private_header_files": "Sources/SQLiteObjc/*.h",
82       "xcconfig": {
83         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_SQLCIPHER",
84         "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_HAS_CODEC=1"
85       },
86       "dependencies": {
87         "SQLCipher": [
88           ">= 3.4.0"
89         ]
90       },
91       "testspecs": [
92         {
93           "name": "tests",
94           "test_type": "unit",
95           "resources": "Tests/SQLiteTests/fixtures/*",
96           "source_files": "Tests/SQLiteTests/*.swift",
97           "platforms": {
98             "ios": "8.0",
99             "tvos": "9.1",
100             "osx": "10.10"
101           }
102         }
103       ]
104     }
105   ]