17 lines
295 B
Swift
17 lines
295 B
Swift
// swift-tools-version: 6.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LCEssentials",
|
|
products: [
|
|
.library(
|
|
name: "LCEssentials",
|
|
targets: ["LCEssentials"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "LCEssentials"),
|
|
|
|
]
|
|
)
|