Files
FFmpegKit56/Demo/Podfile
cuong mac mini m2 4b968a3347
Some checks failed
/ buid (push) Has been cancelled
first commit
2026-04-16 14:48:09 +07:00

27 lines
741 B
Ruby

use_frameworks! :linkage => :static
workspace 'Demo.xcworkspace'
install! 'cocoapods', :generate_multiple_pod_projects => true
def common
pod 'Libass', :path => '../'
pod 'Libmpv', :path => '../'
pod 'FFmpegKit', :path => '../'
# pod 'Libass',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'FFmpegKit',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
# pod 'Libmpv',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
end
target 'iOS' do
project 'Demo.xcodeproj'
platform :ios, 13.0
common
end
target 'macOS' do
project 'Demo.xcodeproj'
platform :osx, 10.15
common
end
target 'tvOS' do
project 'Demo.xcodeproj'
platform :tvos, 13.0
common
end