-
Notifications
You must be signed in to change notification settings - Fork 22
/
NetUtils.podspec.json
29 lines (29 loc) · 1.09 KB
/
NetUtils.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
{
"name": "NetUtils",
"version": "4.2.1",
"summary": "Swift library that simplifies getting information about your network interfaces and their properties, both for iOS and OS X.",
"homepage": "https://github.com/svdo/swift-netutils",
"documentation_url": "http://svdo.github.io/swift-netutils",
"license": {
"type": "MIT", "file": "LICENSE.txt"
},
"source": {
"git": "https://github.com/svdo/swift-netutils.git",
"tag": "4.2.1"
},
"authors": "Stefan van den Oord",
"platforms": {
"ios": "8.0",
"osx": "10.9"
},
"source_files": "NetUtils/**/*.swift",
"requires_arc": true,
"xcconfig": {
"SWIFT_INCLUDE_PATHS[sdk=iphoneos*]": "$(SRCROOT)/NetUtils/ifaddrs/iphoneos",
"SWIFT_INCLUDE_PATHS[sdk=iphonesimulator*]": "$(SRCROOT)/NetUtils/ifaddrs/iphonesimulator",
"SWIFT_INCLUDE_PATHS[sdk=macosx*]": "$(SRCROOT)/NetUtils/ifaddrs/macosx"
},
"preserve_paths": [ "ifaddrs/*" ],
"prepare_command": "ifaddrs/injectXcodePath.sh",
"swift_versions": ["4.2", "5.0", "5.1", "5.2", "5.3"]
}