forked from coteditor/CotEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
28 lines (23 loc) · 639 Bytes
/
Podfile
File metadata and controls
28 lines (23 loc) · 639 Bytes
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
source 'https://github.com/CocoaPods/Specs.git'
platform :osx, '10.8'
xcodeproj 'CotEditor/CotEditor.xcodeproj'
inhibit_all_warnings!
# 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'
pod 'NSHash'
pod 'WFColorCode'
end
# non-AppStore target
shared_pods
pod 'Sparkle', '1.11.1'
# AppStore target
target :appstore, :exclusive => true do
link_with 'CotEditor (AppStore)'
shared_pods
end