24 lines
455 B
Swift
24 lines
455 B
Swift
// swift-tools-version: 6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "ScoobyTag",
|
|
platforms: [
|
|
.iOS(.v15),
|
|
],
|
|
products: [
|
|
// An xtool project should contain exactly one library product,
|
|
// representing the main app.
|
|
.library(
|
|
name: "ScoobyTag",
|
|
targets: ["ScoobyTag"]
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "ScoobyTag"
|
|
),
|
|
]
|
|
)
|