-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPackage.swift
More file actions
51 lines (48 loc) · 1.3 KB
/
Package.swift
File metadata and controls
51 lines (48 loc) · 1.3 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
50
51
// swift-tools-version: 5.9
import PackageDescription
import CompilerPluginSupport
#if canImport(simd)
let simdAvailable = true
#else
let simdAvailable = false
#endif
let package = Package(
name: "simd-tools",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
.watchOS(.v6),
.macCatalyst(.v13)
],
products: [
.library(
name: "SIMDTools",
targets: ["SIMDTools"]
),
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-syntax.git", .upToNextMajor(from: "602.0.0")),
] + (simdAvailable ? [] : [
.package(url: "https://github.com/keyvariable/kvSIMD.swift.git", from: "1.1.0"),
]),
targets: [
.macro(
name: "SIMDToolsMacros",
dependencies: [
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
.product(name: "SwiftCompilerPlugin", package: "swift-syntax")
]
),
.target(
name: "SIMDTools",
dependencies: ["SIMDToolsMacros"] + (simdAvailable ? [] : [
.product(name: "kvSIMD", package: "kvSIMD.swift"),
])
),
.testTarget(
name: "SIMDToolsTests",
dependencies: ["SIMDTools"]
),
]
)