-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathVectorMath.podspec.json
42 lines (42 loc) · 1003 Bytes
/
VectorMath.podspec.json
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
{
"name": "VectorMath",
"version": "0.4.1",
"license": {
"type": "zlib",
"file": "LICENSE.md"
},
"summary": "Vector math library for Mac and iOS",
"homepage": "https://github.com/nicklockwood/VectorMath",
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/nicklockwood/VectorMath.git",
"tag": "0.4.1"
},
"subspecs": [
{
"name": "Core",
"source_files": "VectorMath/VectorMath.swift"
},
{
"name": "Quartz",
"source_files": "VectorMath/VectorMath+Quartz.swift",
"dependencies": { "VectorMath/Core": [] }
},
{
"name": "SceneKit",
"source_files": "VectorMath/VectorMath+SceneKit.swift",
"dependencies": { "VectorMath/Core": [] }
},
{
"name": "MapKit",
"source_files": "VectorMath/VectorMath+MapKit.swift",
"dependencies": { "VectorMath/Core": [] }
}
],
"platforms": {
"ios": "9.0",
"tvos": "9.0",
"osx": "10.11"
},
"requires_arc": true
}