We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bcb808 commit d51b3d1Copy full SHA for d51b3d1
Package.swift
@@ -0,0 +1,18 @@
1
+// swift-tools-version:5.1
2
+// The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+import PackageDescription
5
6
+let package = Package(
7
+ name: "OktaOidc",
8
+ platforms: [
9
+ .macOS(.v10_10), .iOS(.v11)
10
+ ],
11
+ products: [
12
+ .library(name: "OktaOidc", targets: ["OktaOidc"])
13
14
+ targets: [
15
+ .target(name: "OktaOidc", dependencies: []),
16
+ .testTarget(name: "OktaTests", dependencies: ["OktaOidc"])
17
+ ]
18
+)
0 commit comments