forked from apple/swift-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmbraceInternalSwiftCollections.podspec
48 lines (38 loc) · 1.69 KB
/
EmbraceInternalSwiftCollections.podspec
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
43
44
45
46
47
48
Pod::Spec.new do |spec|
spec.name = "EmbraceInternalSwiftCollections"
spec.version = "1.1.3-internal"
spec.summary = "Internal fork for Embrace SDKs to support Swift Collections."
spec.homepage = "https://github.com/embrace-io/swift-collections"
spec.author = "Embrace.io"
spec.ios.deployment_target = '13.0'
spec.swift_version = '5.8'
spec.source = { :git => "https://github.com/embrace-io/swift-collections.git", :tag => spec.version }
spec.subspec 'InternalCollectionsUtilities' do |icu|
icu.source_files = 'Sources/InternalCollectionsUtilities/**/*.swift'
end
spec.subspec 'BitCollections' do |bc|
bc.source_files = 'Sources/BitCollections/**/*.swift'
bc.dependency 'InternalCollectionsUtilities'
end
spec.subspec 'DequeModule' do |dm|
dm.source_files = 'Sources/DequeModule/**/*.swift'
dm.dependency 'InternalCollectionsUtilities'
end
spec.subspec 'HashTreeCollections' do |htc|
htc.source_files = 'Sources/HashTreeCollections/**/*.swift'
htc.dependency 'InternalCollectionsUtilities'
end
spec.subspec 'HeapModule' do |hm|
hm.source_files = 'Sources/HeapModule/**/*.swift'
hm.dependency 'InternalCollectionsUtilities'
end
spec.subspec 'RopeModule' do |rm|
rm.source_files = 'Sources/RopeModule/**/*.swift'
rm.dependency 'InternalCollectionsUtilities'
end
# commenting subspec out since it's having building issues but it's not relevant right now
# spec.subspec 'OrderedCollections' do |oc|
# oc.source_files = 'Sources/OrderedCollections/**/*.swift'
# oc.dependency 'InternalCollectionsUtilities'
# end
end