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

Commit

Permalink
manual package file?
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Dec 18, 2023
1 parent fa3c3b5 commit dfbb234
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "authentikClient",
platforms: [
.iOS(.v9),
.macOS(.v10_11),
.tvOS(.v9),
.watchOS(.v3),
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "authentikClient",
targets: ["authentikClient"]
),
.library(
name: "OpenAPITransport",
targets: ["OpenAPITransport"]
),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "authentikClient",
dependencies: ["OpenAPITransport", ],
path: "authentikClient/Sources"
),
.target(
name: "OpenAPITransport",
dependencies: [],
path: "OpenAPITransport/Sources"
),
]
)

0 comments on commit dfbb234

Please sign in to comment.