[Add] CZarSDK 1.1.12-test01
[CocoaPods.git] / Specs / 4 / 1 / 8 / SQLite.swift / 0.13.3 / SQLite.swift.podspec.json
blobc22466ac96a762c2184755e7efa3b1dbfca8b67b
2   "name": "SQLite.swift",
3   "version": "0.13.3",
4   "summary": "A type-safe, Swift-language layer over SQLite3.",
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.13.3"
14   },
15   "social_media_url": "https://twitter.com/stephencelis",
16   "module_name": "SQLite",
17   "default_subspecs": "standard",
18   "swift_versions": [
19     "5"
20   ],
21   "platforms": {
22     "ios": "9.0",
23     "tvos": "9.1",
24     "osx": "10.10",
25     "watchos": "3.0"
26   },
27   "subspecs": [
28     {
29       "name": "standard",
30       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
31       "exclude_files": "Sources/**/Cipher.swift",
32       "private_header_files": "Sources/SQLiteObjc/fts3_tokenizer.h",
33       "libraries": "sqlite3",
34       "testspecs": [
35         {
36           "name": "tests",
37           "test_type": "unit",
38           "resources": "Tests/SQLiteTests/fixtures/*",
39           "source_files": "Tests/SQLiteTests/*.swift",
40           "platforms": {
41             "ios": "9.0",
42             "tvos": "9.1",
43             "osx": "10.10"
44           }
45         }
46       ]
47     },
48     {
49       "name": "standalone",
50       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
51       "exclude_files": "Sources/**/Cipher.swift",
52       "private_header_files": "Sources/SQLiteObjc/fts3_tokenizer.h",
53       "xcconfig": {
54         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_STANDALONE",
55         "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_SWIFT_STANDALONE=1"
56       },
57       "dependencies": {
58         "sqlite3": [
60         ]
61       },
62       "testspecs": [
63         {
64           "name": "tests",
65           "test_type": "unit",
66           "resources": "Tests/SQLiteTests/fixtures/*",
67           "source_files": "Tests/SQLiteTests/*.swift",
68           "platforms": {
69             "ios": "9.0",
70             "tvos": "9.1",
71             "osx": "10.10"
72           }
73         }
74       ]
75     },
76     {
77       "name": "SQLCipher",
78       "source_files": "Sources/{SQLite,SQLiteObjc}/**/*.{c,h,m,swift}",
79       "private_header_files": "Sources/SQLiteObjc/fts3_tokenizer.h",
80       "xcconfig": {
81         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_SQLCIPHER",
82         "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_HAS_CODEC=1 SQLITE_SWIFT_SQLCIPHER=1"
83       },
84       "dependencies": {
85         "SQLCipher": [
86           ">= 4.0.0"
87         ]
88       },
89       "testspecs": [
90         {
91           "name": "tests",
92           "test_type": "unit",
93           "resources": "Tests/SQLiteTests/fixtures/*",
94           "source_files": "Tests/SQLiteTests/*.swift",
95           "platforms": {
96             "ios": "9.0",
97             "tvos": "9.1",
98             "osx": "10.10"
99           }
100         }
101       ]
102     }
103   ],
104   "swift_version": "5"