Skip to content

Commit

Permalink
[Add] Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
Wei18 committed Oct 7, 2022
1 parent 3a681dc commit d61df27
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"pins" : [
{
"identity" : "pop-spm-package",
"kind" : "remoteSourceControl",
"location" : "https://github.com/vmzhivetyev/pop-spm-package.git",
"state" : {
"revision" : "7363d7e8b2419e7c47fdea7422bacc0c33cd64f9",
"version" : "1.0.4"
}
}
],
"version" : 2
}
24 changes: 24 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// 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: "Koloda",
platforms: [
.iOS(.v11)
],
products: [
.library(name: "Koloda", targets: ["Koloda"])
],
dependencies: [
.package(url: "https://github.com/vmzhivetyev/pop-spm-package.git", from: "1.0.3"),
],
targets: [
.target(
name: "Koloda",
dependencies: [.product(name: "pop", package: "pop-spm-package")],
path: "Pod/Classes/"
)
]
)

0 comments on commit d61df27

Please sign in to comment.