-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
SwiftOSC.podspec
26 lines (21 loc) · 1.54 KB
/
SwiftOSC.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
Pod::Spec.new do |s|
s.name = 'SwiftOSC'
s.version = '1.4.0'
s.summary = 'SwiftOSC is an Open Sound Control client and server framework written in Swift. '
s.description = <<-DESC
SwiftOSC is an Open Sound Control client and server framework written in Swift. SwiftOSC impliments all the functionality of the OSC 1.0 specifications (http://opensoundcontrol.org/spec-1_0) and is also exteneded to include the features of OSC 1.1 (https://hangar.org/webnou/wp-content/uploads/2012/01/Nime09OSCfinal.pdf).
DESC
s.homepage = 'https://github.com/ExistentialAudio/SwiftOSC'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Devin Roth' => '[email protected]' }
s.source = { :git => 'https://github.com/ExistentialAudio/SwiftOSC.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.macos.deployment_target = '10.10'
s.watchos.deployment_target = '4.3'
s.tvos.deployment_target = '12.1'
s.ios.source_files = "Framework/iOS/iOS}" , "Framework/iOS/**/*.{c,h,m,swift}", "Framework/SwiftOSC/**/*.{c,h,m,swift}"
s.macos.source_files = "Framework/macOS/macOS","Framework/macOS/**/*.{c,h,m,swift}", "Framework/SwiftOSC/**/*.{c,h,m,swift}"
s.watchos.source_files = "Framework/watchos/watchos","Framework/watchos/**/*.{c,h,m,swift}", "Framework/SwiftOSC/**/*.{c,h,m,swift}"
s.tvos.source_files = "Framework/tvos/tvos","Framework/tvos/**/*.{c,h,m,swift}", "Framework/SwiftOSC/**/*.{c,h,m,swift}"
end