mirror of
https://github.com/undeaDD/FakeWebKit.git
synced 2026-03-11 19:00:22 +01:00
31 lines
627 B
Swift
31 lines
627 B
Swift
// swift-tools-version: 6.2
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
// Package: FakeWebKit
|
|
// Author: undeaDD
|
|
// Repository: https://github.com/undeaDD/FakeWebKit
|
|
// License: MIT
|
|
// Version: 0.0.1
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "FakeWebKit",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.tvOS(.v13),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "FakeWebKit",
|
|
targets: ["FakeWebKit"]
|
|
),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "FakeWebKit"
|
|
)
|
|
]
|
|
)
|