WeChatTweak-macOS/Podfile
Sunnyyoung f6482b1d96 #451 #455 Refactor Alfred module
1. Remove Alfred workflow Python dependency
2. Remove Alfred JSON compressing
2022-03-21 13:01:09 +08:00

17 lines
366 B
Ruby

platform :osx, '10.10'
inhibit_all_warnings!
target 'WeChatTweak' do
pod 'JRSwizzle'
pod 'GCDWebServer'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'ARCHS'
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = 10.11
end
end
end