forked from square/Blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlueprintUI.podspec
34 lines (26 loc) · 973 Bytes
/
BlueprintUI.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
# frozen_string_literal: true
require_relative 'version'
Pod::Spec.new do |s|
s.name = 'BlueprintUI'
s.version = BLUEPRINT_VERSION
s.summary = 'Swift library for declarative UI construction'
s.homepage = 'https://www.github.com/square/blueprint'
s.license = 'Apache License, Version 2.0'
s.author = 'Square'
s.source = { git: 'https://github.com/square/blueprint.git', tag: s.version }
s.swift_version = SWIFT_VERSION
s.ios.deployment_target = BLUEPRINT_IOS_DEPLOYMENT_TARGET
s.source_files = 'BlueprintUI/Sources/**/*.swift'
s.weak_framework = 'SwiftUI'
s.pod_target_xcconfig = {
'APPLICATION_EXTENSION_API_ONLY' => 'YES',
}
s.test_spec 'Tests' do |test_spec|
test_spec.library = 'swiftsimd'
test_spec.source_files = 'BlueprintUI/Tests/**/*.swift'
test_spec.framework = 'XCTest'
test_spec.pod_target_xcconfig = {
'APPLICATION_EXTENSION_API_ONLY' => 'NO',
}
end
end