mirror of
https://github.com/jkcoxson/idevice.git
synced 2026-03-02 14:36:16 +01:00
33 lines
610 B
Swift
33 lines
610 B
Swift
// Package.swift
|
|
|
|
// swift-tools-version: 6.1
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "IDevice",
|
|
platforms: [
|
|
.iOS(.v12),
|
|
.macOS(.v11),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "IDevice",
|
|
targets: ["IDevice"]
|
|
),
|
|
.library(
|
|
name: "plist",
|
|
targets: ["plist"],
|
|
),
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "IDevice",
|
|
path: "IDevice.xcframework"
|
|
),
|
|
.binaryTarget(
|
|
name: "plist",
|
|
path: "plist.xcframework"
|
|
),
|
|
]
|
|
)
|