rastrillo / native Public

Clone
git clone https://amadan.net/rastrillo/native

Plain git — no account needed to clone.

Download

Download this file

1// swift-tools-version: 5.9
2import PackageDescription
3
4let package = Package(
5 name: "RastrilloNative",
6 platforms: [.iOS(.v17), .macOS(.v14)],
7 products: [.library(name: "RastrilloNative", targets: ["RastrilloNative"])],
8 targets: [
9 .target(name: "RastrilloNative"),
10 .testTarget(name: "RastrilloNativeTests", dependencies: ["RastrilloNative"]),
11 ]
12)
13