-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQAMenuSwiftUI.podspec
executable file
·34 lines (24 loc) · 1.09 KB
/
QAMenuSwiftUI.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
32
33
34
Pod::Spec.new do |spec|
spec.name = "QAMenuSwiftUI"
spec.version = File.read('VERSION')
spec.summary = "QAMenu renderer based on SwiftUI."
spec.description = <<-DESC
[Alpha] QAMenu renderer based on SwiftUI. Contains all SwiftUI related UI to present a QA menu.
DESC
spec.homepage = "https://github.com/tschob/QAMenu"
spec.source = { :git => "https://github.com/tschob/QAMenu.git", :tag => "#{spec.version}" }
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = { "Hans Seiffert" => "[email protected]" }
spec.ios.deployment_target = '14.0'
spec.swift_version = '5.10'
spec.requires_arc = true
spec.frameworks = 'SwiftUI'
spec.source_files = "Sources/QAMenuSwiftUI/**/*.{h,swift,xib}"
spec.resource_bundles = {
'QAMenuSwiftUIResources' => ["Sources/QAMenuSwiftUI/Resources/**/*"]
}
spec.dependency 'QAMenu'
# QAMenuCatalog and QAMenuExampleItems are used for SwiftUI previews
spec.dependency 'QAMenuCatalog'
spec.dependency 'QAMenuExampleItems'
end