Skip to content
This repository was archived by the owner on Apr 17, 2024. It is now read-only.

Commit dfbb234

Browse files
committed
manual package file?
1 parent fa3c3b5 commit dfbb234

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

Package.swift

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// swift-tools-version:5.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "authentikClient",
7+
platforms: [
8+
.iOS(.v9),
9+
.macOS(.v10_11),
10+
.tvOS(.v9),
11+
.watchOS(.v3),
12+
],
13+
products: [
14+
// Products define the executables and libraries produced by a package, and make them visible to other packages.
15+
.library(
16+
name: "authentikClient",
17+
targets: ["authentikClient"]
18+
),
19+
.library(
20+
name: "OpenAPITransport",
21+
targets: ["OpenAPITransport"]
22+
),
23+
],
24+
targets: [
25+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
26+
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
27+
.target(
28+
name: "authentikClient",
29+
dependencies: ["OpenAPITransport", ],
30+
path: "authentikClient/Sources"
31+
),
32+
.target(
33+
name: "OpenAPITransport",
34+
dependencies: [],
35+
path: "OpenAPITransport/Sources"
36+
),
37+
]
38+
)

0 commit comments

Comments
 (0)