Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Swift Package Manager #78

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// swift-tools-version:5.2
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "fishhook",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "fishhook",
targets: ["fishhook"]),
],
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: "fishhook",
path: "./Sources"),
]
)
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion fishhook.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Pod::Spec.new do |spec|
spec.author = { "Facebook, Inc." => "https://github.com/facebook" }
spec.summary = "A library that enables dynamically rebinding symbols in Mach-O binaries running on iOS."
spec.source = { :git => "https://github.com/facebook/fishhook.git", :tag => '0.2'}
spec.source_files = "fishhook.{h,c}"
spec.source_files = "Sources/**/*.{h,c}"
spec.social_media_url = 'https://twitter.com/fbOpenSource'

spec.ios.deployment_target = '6.0'
Expand Down