[Add] FTMobileSDK 1.5.8-alpha.2
[CocoaPods.git] / Specs / 4 / 1 / 8 / SQLite.swift / 0.15.0 / SQLite.swift.podspec.json
blobc0f6943a09b9c1e076b6f0f3b8177ab1e406c1f7
2   "name": "SQLite.swift",
3   "version": "0.15.0",
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.15.0"
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": "12.0",
23     "tvos": "12.0",
24     "osx": "10.13",
25     "watchos": "4.0"
26   },
27   "subspecs": [
28     {
29       "name": "standard",
30       "source_files": "Sources/SQLite/**/*.{c,h,m,swift}",
31       "exclude_files": "Sources/**/Cipher.swift",
32       "libraries": "sqlite3",
33       "testspecs": [
34         {
35           "name": "tests",
36           "test_type": "unit",
37           "resources": "Tests/SQLiteTests/Resources/*",
38           "source_files": "Tests/SQLiteTests/*.swift",
39           "platforms": {
40             "ios": "12.0",
41             "tvos": "12.0",
42             "osx": "10.13"
43           }
44         }
45       ]
46     },
47     {
48       "name": "standalone",
49       "source_files": "Sources/SQLite/**/*.{c,h,m,swift}",
50       "exclude_files": "Sources/**/Cipher.swift",
51       "xcconfig": {
52         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_STANDALONE",
53         "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_SWIFT_STANDALONE=1"
54       },
55       "dependencies": {
56         "sqlite3": [
58         ]
59       },
60       "testspecs": [
61         {
62           "name": "tests",
63           "test_type": "unit",
64           "resources": "Tests/SQLiteTests/Resources/*",
65           "source_files": "Tests/SQLiteTests/*.swift",
66           "platforms": {
67             "ios": "12.0",
68             "tvos": "12.0",
69             "osx": "10.13"
70           }
71         }
72       ]
73     },
74     {
75       "name": "SQLCipher",
76       "source_files": "Sources/SQLite/**/*.{c,h,m,swift}",
77       "xcconfig": {
78         "OTHER_SWIFT_FLAGS": "$(inherited) -DSQLITE_SWIFT_SQLCIPHER",
79         "GCC_PREPROCESSOR_DEFINITIONS": "$(inherited) SQLITE_HAS_CODEC=1 SQLITE_SWIFT_SQLCIPHER=1"
80       },
81       "dependencies": {
82         "SQLCipher": [
83           ">= 4.0.0"
84         ]
85       },
86       "testspecs": [
87         {
88           "name": "tests",
89           "test_type": "unit",
90           "resources": "Tests/SQLiteTests/Resources/*",
91           "source_files": "Tests/SQLiteTests/*.swift",
92           "platforms": {
93             "ios": "12.0",
94             "tvos": "12.0",
95             "osx": "10.13"
96           }
97         }
98       ]
99     }
100   ],
101   "swift_version": "5"