CotEditor/Podfile

29 lines
629 B
Plaintext
Raw Normal View History

2014-10-03 17:28:03 +04:00
source 'https://github.com/CocoaPods/Specs.git'
2014-08-21 20:51:31 +04:00
platform :osx, '10.8'
2014-08-28 03:16:47 +04:00
xcodeproj 'CotEditor/CotEditor.xcodeproj'
2014-08-25 04:20:14 +04:00
inhibit_all_warnings!
2014-08-28 03:16:47 +04:00
# shared pods
def shared_pods
pod 'OgreKit',
:git => 'https://github.com/coteditor/OgreKit.git',
:branch => 'coteditor-mod-nofindpanel'
pod 'YAML-Framework',
:git => 'https://github.com/coteditor/YAML.framework.git',
:branch => 'coteditor-mod'
2015-12-29 13:14:31 +03:00
pod 'NSHash'
pod 'WFColorCode'
end
# non-AppStore target
shared_pods
2016-03-08 13:51:21 +03:00
pod 'Sparkle'
# AppStore target
target :appstore, :exclusive => true do
link_with 'CotEditor (AppStore)'
shared_pods
end