-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
49 lines (46 loc) · 1.18 KB
/
Package.swift
File metadata and controls
49 lines (46 loc) · 1.18 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
// swift-tools-version: 6.0
import PackageDescription
import CompilerPluginSupport
import class Foundation.ProcessInfo
// get environment variables
let environment = ProcessInfo.processInfo.environment
let dynamicLibrary = environment["SWIFT_BUILD_DYNAMIC_LIBRARY"] == "1"
// force building as dynamic library
var libraryType: PackageDescription.Product.Library.LibraryType? = dynamicLibrary ? .dynamic : nil
let package = Package(
name: "EntraID",
platforms: [
.macOS(.v13),
.iOS(.v13),
.watchOS(.v6),
.tvOS(.v13)
],
products: [
.library(
name: "EntraID",
type: libraryType,
targets: ["EntraID"]
),
],
dependencies: [
.package(
url: "https://github.com/MillerTechnologyPeru/OAuth.git",
branch: "master"
)
],
targets: [
.target(
name: "EntraID",
dependencies: [
.product(
name: "OAuth",
package: "OAuth"
)
]
),
.testTarget(
name: "EntraIDTests",
dependencies: ["EntraID"]
),
]
)