forked from wysaid/CameraCapture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccap.podspec
More file actions
33 lines (24 loc) · 1.04 KB
/
ccap.podspec
File metadata and controls
33 lines (24 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = "ccap"
s.version = "1.3.2"
s.summary = "CameraCapture And Player"
s.description = <<-DESC
Pod of https://github.com/wysaid/CameraCapture
DESC
s.homepage = "https://github.com/wysaid/CameraCapture"
s.license = "MIT"
s.author = { "wysaid" => "this@wysaid.org" }
s.platform = :ios, "13.0"
s.osx.deployment_target = "10.13"
s.source = { :git => "https://github.com/wysaid/CameraCapture", :tag => "#{s.version}" }
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17',
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GLES_SILENCE_DEPRECATION=1',
}
s.user_target_xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GLES_SILENCE_DEPRECATION=1',
}
s.source_files = 'src/**/*.{h,hpp,c,cpp,mm,m}', 'include/**/*.{h,hpp,c,cpp,mm,m}'
s.ios.frameworks = 'Foundation', 'AVFoundation', 'CoreVideo', 'CoreMedia', 'Accelerate'
s.osx.frameworks = 'Foundation', 'AVFoundation', 'CoreVideo', 'CoreMedia', 'Accelerate'
end