Skip to content

Commit

Permalink
Add package.swift in the root directory to make spm happy
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Apr 9, 2024
1 parent 2c01a46 commit 1026619
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// swift-tools-version:5.8

import PackageDescription

let package = Package(
name: "r2pipe",
products: [
.library(name: "r2pipe", targets: ["r2pipe"]),
],
dependencies: [],
targets: [
.target(name: "r2pipe", path: "swift", sources: ["r2pipe.swift", "r2pipeNative.swift"]),
]
)

0 comments on commit 1026619

Please sign in to comment.