-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fun
committed
Mar 30, 2022
1 parent
dbc472d
commit d6aa6a6
Showing
3 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "Jenga" | ||
s.version = "1.0.0" | ||
s.summary = "在UIKit里像SwiftUI一样搭建TableView" | ||
|
||
s.homepage = "https://github.com/fanglinwei/Jenga" | ||
|
||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
|
||
s.author = { "fanglinwei" => "[email protected]" } | ||
|
||
s.source = { :git => "https://github.com/fanglinwei/Jenga.git", :tag => s.version } | ||
|
||
s.requires_arc = true | ||
|
||
s.swift_versions = ["5.0"] | ||
|
||
s.frameworks = "Foundation" | ||
s.ios.frameworks = "UIKit" | ||
|
||
s.ios.deployment_target = '11.0' | ||
|
||
s.source_files = ["Sources/*.swift"] | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// swift-tools-version:5.3 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Jenga", | ||
platforms: [.iOS(.v9), .macOS(.v10_13), .tvOS(.v11), .watchOS(.v5)], | ||
products: [ | ||
// Products define the executables and libraries produced by a package, and make them visible to other packages. | ||
.library( | ||
name: "Jenga", | ||
targets: ["Jenga"]), | ||
], | ||
dependencies: [ | ||
// Dependencies declare other packages that this package depends on. | ||
// .package(url: /* package url */, from: "1.0.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 which this package depends on. | ||
.target( | ||
name: "Jenga", | ||
dependencies: [], | ||
path: "Sources" | ||
) | ||
] | ||
) |