1// swift-tools-version: 5.5
2// The swift-tools-version declares the minimum version of Swift required to build this package.
3
4import PackageDescription
5
6let package = Package(
7 name: "llama-batched-swift",
8 platforms: [.macOS(.v12)],
9 dependencies: [
10 .package(name: "llama", path: "../../"),
11 ],
12 targets: [
13 // Targets are the basic building blocks of a package, defining a module or a test suite.
14 // Targets can depend on other targets in this package and products from dependencies.
15 .executableTarget(
16 name: "llama-batched-swift",
17 dependencies: ["llama"],
18 path: "Sources",
19 linkerSettings: [.linkedFramework("Foundation"), .linkedFramework("AppKit")]
20 ),
21 ]
22)