mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-11 09:27:47 +08:00
20 lines
383 B
Swift
20 lines
383 B
Swift
|
// swift-tools-version: 5.5
|
||
|
|
||
|
import PackageDescription
|
||
|
|
||
|
let package = Package(
|
||
|
name: "Livebook",
|
||
|
platforms: [
|
||
|
.macOS(.v11)
|
||
|
],
|
||
|
dependencies: [
|
||
|
.package(name: "ElixirKit", path: "../../../elixirkit/elixirkit_swift")
|
||
|
],
|
||
|
targets: [
|
||
|
.executableTarget(
|
||
|
name: "Livebook",
|
||
|
dependencies: ["ElixirKit"]
|
||
|
)
|
||
|
]
|
||
|
)
|