-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathSwiftDraw.podspec.json
More file actions
46 lines (46 loc) · 1.19 KB
/
SwiftDraw.podspec.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "SwiftDraw",
"version": "0.27.0",
"summary": "A Swift library that adds support for SVG files to UIImage and NSImage.",
"homepage": "https://github.com/swhitty/SwiftDraw",
"authors": "Simon Whitty",
"license": {
"type": "zlib",
"file": "LICENSE.txt"
},
"source": {
"git": "https://github.com/swhitty/SwiftDraw.git",
"tag": "0.27.0"
},
"platforms": {
"ios": "13.0",
"osx": "10.15",
"tvos": "13.0",
"watchos": "6.0",
"visionos": "1.0"
},
"source_files": "SwiftDraw/Sources/**/*.swift",
"ios": {
"exclude_files": "SwiftDraw/Sources/NSImage+Image.swift",
"frameworks": ["UIKit", "Foundation"]
},
"osx": {
"exclude_files": "SwiftDraw/Sources/UIImage+Image.swift",
"frameworks": ["AppKit", "Foundation"]
},
"tvos": {
"exclude_files": "SwiftDraw/Sources/NSImage+Image.swift",
"frameworks": ["UIKit", "Foundation"]
},
"watchos": {
"exclude_files": "SwiftDraw/Sources/NSImage+Image.swift",
"frameworks": ["UIKit", "WatchKit", "Foundation"]
},
"swift_version": "6.0",
"pod_target_xcconfig": {
"OTHER_SWIFT_FLAGS": "-package-name SwiftDraw"
},
"dependencies": {
"SwiftDrawDOM": "~> 0.27.0"
}
}