-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPackage.swift
25 lines (23 loc) · 938 Bytes
/
Package.swift
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
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "DifferentiableSwiftExamples",
products: [
.executable(name: "BasicDifferentiation", targets: ["BasicDifferentiation"]),
.executable(name: "BasicGradientDescent", targets: ["BasicGradientDescent"]),
.executable(name: "CustomDerivatives", targets: ["CustomDerivatives"]),
.library(name: "DifferentiableSwiftExamples", targets: ["DifferentiableSwiftExamples"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.3.0")
],
targets: [
.executableTarget(name: "BasicDifferentiation"),
.executableTarget(name: "BasicGradientDescent"),
.executableTarget(name: "CustomDerivatives"),
.target(
name: "DifferentiableSwiftExamples",
path: "Sources/DifferentiableSwiftExamplesDocumentation"
),
]
)