-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathGong.podspec
34 lines (30 loc) · 1.03 KB
/
Gong.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
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Gong"
s.version = "1.3.0"
s.summary = "Gong is a MIDI library for iOS and macOS."
s.homepage = "https://github.com/dclelland/Gong"
s.license = { :type => 'MIT' }
s.author = { "Daniel Clelland" => "[email protected]" }
s.source = { :git => "https://github.com/dclelland/Gong.git", :tag => "1.3.0" }
s.source_files = 'Sources/Gong/*.swift'
s.swift_versions = ['5.6']
s.subspec 'Core' do |ss|
ss.source_files = 'Sources/Gong/Core/**/*.swift'
ss.frameworks = 'CoreMIDI'
end
s.subspec 'Events' do |ss|
ss.source_files = 'Sources/Gong/Events/**/*.swift'
ss.dependency 'Gong/Core'
end
s.subspec 'Constants' do |ss|
ss.source_files = 'Sources/Gong/Constants/**/*.swift'
end
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
end