Add support for iOS 15 and unicode release v13 (#1)

This commit is contained in:
Niklas Amslgruber
2023-06-16 17:04:40 +02:00
committed by GitHub
parent 6bbb3a1a71
commit 977c01327f
16 changed files with 3777 additions and 146 deletions

View File

@@ -5,15 +5,11 @@ import PackageDescription
let package = Package(
name: "EmojiKit",
platforms: [.macOS(.v13), .iOS(.v16)],
platforms: [.macOS(.v13), .iOS(.v15), .watchOS(.v8), .tvOS(.v15)],
products: [
.executable(
.library(
name: "EmojiKit",
targets: ["EmojiKit"]
),
.library(
name: "EmojiKitLibrary",
targets: ["EmojiKitLibrary"]
)
],
dependencies: [
@@ -22,14 +18,14 @@ let package = Package(
],
targets: [
.executableTarget(
name: "EmojiKit",
name: "EmojiSourceKit",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SwiftSoup", package: "SwiftSoup"),
.target(name: "EmojiKitLibrary")
.target(name: "EmojiKit")
]),
.target(
name: "EmojiKitLibrary", resources: [
name: "EmojiKit", resources: [
.process("Resources")
])
]