xcframework 0.2.1

A Cargo plugin and library for building Apple XCFrameworks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// swift-tools-version:5.7
import PackageDescription
let package = Package(
	name: "libmymath",
	products: [
		.library(
			name: "libmymath",
			targets: ["libmymath"]),
	],
	dependencies: [],
	targets: [
		.binaryTarget(
			name: "libmymath",
			path: "libmymath.xcframework"
		),
	]
)