rastrillo / native Public
| 1 | // swift-tools-version: 5.9 |
| 2 | import PackageDescription |
| 3 | |
| 4 | let 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 |