livebook/rel/app/macos/Package.swift
2023-01-16 21:09:47 +01:00

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"]
)
]
)