mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-10 17:08:29 +08:00
28 lines
505 B
Swift
28 lines
505 B
Swift
|
// swift-tools-version: 5.5
|
||
|
|
||
|
import PackageDescription
|
||
|
|
||
|
let package = Package(
|
||
|
name: "ElixirKit",
|
||
|
platforms: [
|
||
|
.macOS(.v11)
|
||
|
],
|
||
|
products: [
|
||
|
.library(
|
||
|
name: "ElixirKit",
|
||
|
targets: ["ElixirKit"]
|
||
|
),
|
||
|
],
|
||
|
dependencies: [],
|
||
|
targets: [
|
||
|
.target(
|
||
|
name: "ElixirKit",
|
||
|
dependencies: []
|
||
|
),
|
||
|
.testTarget(
|
||
|
name: "ElixirKitTests",
|
||
|
dependencies: ["ElixirKit"]
|
||
|
)
|
||
|
]
|
||
|
)
|