update README

This commit is contained in:
Kelvas
2023-01-11 17:22:01 +01:00
parent 447bb0960f
commit 123c6c8d2a
16 changed files with 151 additions and 96 deletions

30
Package.swift Normal file
View File

@@ -0,0 +1,30 @@
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "EmojiPicker",
platforms: [.iOS(.v15)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "EmojiPicker",
targets: ["EmojiPicker"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/onmyway133/Smile", from: "2.1.0")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "EmojiPicker",
dependencies: ["Smile"]),
.testTarget(
name: "EmojiPickerTests",
dependencies: ["EmojiPicker"]),
]
)