25 lines
668 B
Swift
25 lines
668 B
Swift
// swift-tools-version: 6.0
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "FFTS",
|
|
products: [
|
|
// Products define the executables and libraries a package produces, making them visible to other packages.
|
|
.library(
|
|
name: "FFTS",
|
|
targets: ["FFTS"]),
|
|
],
|
|
targets: [
|
|
.plugin(name: "CMakePlugin", capability: .buildTool()),
|
|
.target(
|
|
name: "FFTS",
|
|
plugins: ["CMakePlugin"]),
|
|
.testTarget(
|
|
name: "FFTSTests",
|
|
dependencies: ["FFTS"]
|
|
),
|
|
]
|
|
)
|