/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
osx/Podfile
42 строки
1 KB
Mike Maxim
upgrade kbfuse to 4.8.2 (#28028)
01 окт 2024, 17:44
Не верифицирован
01 окт 2024, 17:44
66d3bc4
Код
Авторство
О чём код?
# Do not set use_frameworks! globally otherwise the helper # tool target binary will silently fail to load since it # doesn't support dynamic frameworks (for security reasons). # Also probably not a good idea to set any global options # here at all. target "Installer" do use_frameworks! platform :osx, "10.13" pod "ObjectiveSugar" pod "GBCli" pod "Slash" pod "MPMessagePack", :path => "MPMessagePack" pod "KBKit", :path => "KBKit" end target "Status" do use_frameworks! platform :osx, "10.13" pod "ObjectiveSugar" pod "GBCli" pod "Slash" pod "MPMessagePack", :path => "MPMessagePack" pod "KBKit", :path => "KBKit" end # This runs as a privileged helper so keep dependencies # here to a minimum. target "keybase.Helper" do platform :osx, "10.13" pod "MPMessagePack", :path => "MPMessagePack" end post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings["MACOSX_DEPLOYMENT_TARGET"] = "10.13" end end end