mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
26 lines
566 B
Swift
26 lines
566 B
Swift
// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
|
|
|
|
// swift-tools-version:5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "SelfSdk",
|
|
platforms: [
|
|
.iOS(.v14)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "SelfSdk",
|
|
targets: ["SelfSdk"]
|
|
)
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "SelfSdk",
|
|
path: "./shared/build/xcframework/SelfSdk.xcframework"
|
|
)
|
|
]
|
|
)
|