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

test combine #5

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
manual package file?
  • Loading branch information
BeryJu committed Dec 18, 2023
commit dfbb234a64ff1998991e4443cebe0478551155e9
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"
),
]
)