-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unilib.podspec
31 lines (25 loc) · 1.09 KB
/
Unilib.podspec
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
Pod::Spec.new do |s|
s.name = "Unilib"
s.version = "0.1.5"
s.summary = "Generic Swift library of protocols/components for Swift application development. (Non-UI.)"
s.homepage = "https://github.com/davidbjames/Unilib"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "David James" => "[email protected]" }
s.platform = :ios, "12.2"
s.swift_version = "5.1"
s.source = { :git => "https://github.com/davidbjames/Unilib.git", :tag => s.version }
s.source_files = "Unilib/Sources/**/*.{swift}"
# s.exclude_files = "Classes/Exclude"
# s.public_header_files = "Classes/**/*.h"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.framework = "Foundation"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# Try NOT to add external dependencies to this pod.
#s.dependency ""
end