-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab_sound_bridge.podspec
25 lines (25 loc) · 1.61 KB
/
lab_sound_bridge.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
Pod::Spec.new do |s|
s.name = "lab_sound_bridge"
s.version = '0.0.29'
s.summary = "Bridge to LabSound for Flutter"
s.description = <<-DESC
This lib is used by the flutter plugin `lab_sound_flutter` to access the LabSound lib.
It has been extracted to be isolated from Flutter and can be used with other frameworks
(for example pure dart).
DESC
s.homepage = "https://github.com/canardoux/lab_sound_bridge.git"
s.license = { :type => "BSD", :file => "LICENSE" }
s.author = { "larpoux" => "[email protected]" }
s.source = { :git => "https://github.com/canardoux/lab_sound_bridge.git", :branch => "main", :tag => "#{s.version}" }
s.vendored_frameworks = "products/ios/LabSoundBridge.xcframework"
s.platform = :ios
s.swift_version = "5.7"
s.ios.deployment_target = '12.0'
#s.source_files = ['bridge/**/*.{h,c,cpp}','LabSound/include/LabSound/*.h','LabSound/src/**/*.{h,cpp}']
#s.public_header_files = ['bridge/**/*.h', 'LabSound/include/LabSound/*.h','LabSound/src/**/*.h']
#s.private_header_files = ['bridge/**/*.h', 'LabSound/include/LabSound/*.h','LabSound/src/**/*.h']
s.requires_arc = true
#s.xcconfig = { 'HEADER_SEARCH_PATHS' => ['"${PODS_TARGET_SRCROOT}/LabSound/include/"','"${PODS_TARGET_SRCROOT}/LabSound/src/"','"${PODS_TARGET_SRCROOT}/LabSound/third_party/"'],
# 'USER_HEADER_SEARCH_PATHS' => ['"${PODS_TARGET_SRCROOT}/LabSound/include/"','"${PODS_TARGET_SRCROOT}/LabSound/src/"','"${PODS_TARGET_SRCROOT}/LabSound/third_party/"']
#}
end