-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackage.swift
More file actions
23 lines (22 loc) · 764 Bytes
/
Package.swift
File metadata and controls
23 lines (22 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "SpatialLib", // The name of the package
platforms: [.iOS(.v15), .macOS(.v12)], // The platforms the package supports
products: [
.library(
name: "SpatialLib", // The name of the library product
targets: ["SpatialLib"]) // The targets that the product depends on
],
dependencies: [
],
targets: [
.target(
name: "SpatialLib", // The name of the target
dependencies: [] // The dependencies of the target
),
.testTarget(
name: "SpatialTests", // The name of the test target
dependencies: ["SpatialLib"]) // The dependencies of the test target
]
)