forked from smart-on-fhir/Swift-SMART
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SMART.podspec
57 lines (51 loc) · 3.23 KB
/
SMART.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
49
50
51
52
53
54
55
56
57
#
# Swift-SMART
#
# Swift SMART on FHIR framework for iOS and OS X
# Enjoy!
#
Pod::Spec.new do |s|
s.name = "SMART"
s.version = "4.1.0"
s.summary = "Swift SMART on FHIR framework for iOS and OS X"
s.description = <<-DESC
Swift SMART on FHIR framework for iOS and OS X.
Swift-SMART is a full client implementation of the 🔥FHIR specification for building apps that
interact with healthcare data through [**SMART on FHIR**](http://docs.smarthealthit.org).
Start with `import SMART` in your source files. Code documentation is available from within
Xcode (ALT + click on symbols) and on [smart-on-fhir.github.io/Swift-SMART/](http://smart-on-fhir.github.io/Swift-SMART/).
DESC
s.homepage = "https://github.com/smart-on-fhir/Swift-SMART"
s.documentation_url = "http://docs.smarthealthit.org/Swift-SMART/"
s.license = "Apache 2"
s.author = { "Pascal Pfiffner" => "[email protected]" }
s.source = { :git => "https://github.com/smart-on-fhir/Swift-SMART.git", :tag => "#{s.version}", :submodules => true }
s.prepare_command = "git submodule update --init --recursive" # The :submodules flag above is not recursive :P
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-DNO_MODEL_IMPORT -DNO_MODULE_IMPORT -DNO_KEYCHAIN_IMPORT' }
s.source_files = "Sources/Client/*.swift",
"Swift-FHIR/Sources/Models/*.swift",
"Swift-FHIR/Sources/Client/DomainResource+Containment.swift",
"Swift-FHIR/Sources/Client/Element+Extensions.swift",
"Swift-FHIR/Sources/Client/FHIRBaseRequestHandler.swift",
"Swift-FHIR/Sources/Client/FHIRMinimalServer.swift",
"Swift-FHIR/Sources/Client/FHIROpenServer.swift",
"Swift-FHIR/Sources/Client/FHIROperation.swift",
"Swift-FHIR/Sources/Client/FHIRSearch.swift",
"Swift-FHIR/Sources/Client/FHIRServerDataResponse.swift",
"Swift-FHIR/Sources/Client/FHIRString+Localization.swift",
"Swift-FHIR/Sources/Client/Patient+SMART.swift",
"Swift-FHIR/Sources/Client/Reference+Resolving.swift",
"Swift-FHIR/Sources/Client/Resource+Instantiation.swift",
"Swift-FHIR/Sources/Client/Resource+Operation.swift",
"Swift-FHIR/Sources/Client/Resource+REST.swift",
"Swift-FHIR/Sources/Client/ValueSet+Localization.swift",
"OAuth2/SwiftKeychain/Keychain/Keychain.swift",
"OAuth2/Sources/Base/*.swift",
"OAuth2/Sources/Flows/*.swift"
s.ios.source_files = "Sources/iOS/*.swift",
"OAuth2/Sources/iOS/*.swift"
s.osx.source_files = "Sources/macOS/*.swift",
"OAuth2/Sources/macOS/*.swift"
end