-
Notifications
You must be signed in to change notification settings - Fork 11
/
Package.swift
33 lines (31 loc) · 988 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
26
27
28
29
30
31
32
33
// swift-tools-version:5.8
import PackageDescription
let package = Package(
name: "swift-noise",
platforms: [.macOS("13.3"), .iOS("16.4"), .tvOS("16.4"), .watchOS("9.4")],
products:
[
.library(name: "Noise", targets: ["Noise"]),
.executable(name: "generate-noise", targets: ["GenNoise"])
],
dependencies:
[
.package(url: "https://github.com/tayloraswift/swift-png", from: "4.4.0")
],
targets:
[
.target(
name: "Noise"
),
.testTarget(name: "NoiseTests", dependencies: ["Noise"]),
.executableTarget(name: "GenNoise",
dependencies: [
.target(name: "Noise"),
.product(name: "PNG", package: "swift-png"),
],
exclude:[
"calibrate.blend",
"calibrate.blend1"
])
]
)