-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
36 lines (34 loc) · 941 Bytes
/
Package.swift
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
// swift-tools-version:5.1
// Package.swift
//
// Created by Dave Carlson on 8/8/19.
import PackageDescription
let package = Package(
name: "SMART",
platforms: [
.macOS(.v10_13), .iOS(.v11)
],
products: [
.library(
name: "SMART",
targets: ["SMART"]),
],
dependencies: [
// .package(url: "https://github.com/smart-on-fhir/Swift-FHIR", "4.2.0"..<"5.0.0"),
// .package(url: "https://github.com/p2/OAuth2", "5.1.0"..<"6.0.0"),
.package(url: "https://github.com/clinical-cloud/Swift-FHIR", .branch("swift-package")),
.package(url: "https://github.com/clinical-cloud/OAuth2", .branch("swift-package")),
// .package(path: "../Swift-FHIR"),
// .package(path: "../OAuth2"),
],
targets: [
.target(
name: "SMART",
dependencies: [
.product(name: "OAuth2"),
.product(name: "FHIR"),
],
path: "Sources",
sources: ["SMART", "Client", "iOS", "macOS"]),
]
)