-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
25 lines (22 loc) · 944 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.9
// swift-format-ignore-file
import PackageDescription
let package = Package(name: "trs_system",
platforms: [
.macOS(.v14),
],
products: [
.library(name: "trs_system",
targets: ["trs_system"]),
],
dependencies: [
],
targets: [
.target(name: "trs_system",
resources: [
.process("sound/audio_files"),
.process("styles/fonts/custom_fonts"),
]),
.testTarget(name: "trs_system-snapshot",
dependencies: ["trs_system"]),
])