mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-15 20:37:55 +08:00
19 lines
383 B
Swift
19 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"]
|
|
)
|
|
]
|
|
)
|