-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
42 lines (28 loc) · 945 Bytes
/
Podfile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
workspace 'testWorkspace'
xcodeproj 'TinderboxParserMac/TinderboxParserMac.xcodeproj'
xcodeproj 'TinderboxMacSwiftUI/TinderboxMacSwiftUI.xcodeproj'
xcodeproj 'TbxParserUtils/TbxParserUtils.xcodeproj'
xcodeproj 'TbxParserFrwUtils/TbxParserFrwUtils.xcodeproj'
def parser_pods
pod 'AEXML'
end
target 'TinderboxParserMac' do
xcodeproj 'TinderboxParserMac/TinderboxParserMac.xcodeproj'
parser_pods
end
target 'TinderboxMacSwiftUI' do
xcodeproj 'TinderboxMacSwiftUI/TinderboxMacSwiftUI.xcodeproj'
parser_pods
end
target 'TbxParserUtils' do
xcodeproj 'TbxParserUtils/TbxParserUtils.xcodeproj'
parser_pods
end
target 'TbxParserFrwUtils' do
xcodeproj 'TbxParserFrwUtils/TbxParserFrwUtils.xcodeproj'
parser_pods
end