Add support for iOS 15 and unicode release v13 (#1)
This commit is contained in:
committed by
GitHub
parent
6bbb3a1a71
commit
977c01327f
@@ -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")
|
||||
])
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user