Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun authored Dec 21, 2020
1 parent 2c7e6ff commit d321f5e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@ Swift WebAssembly runtime powered by WAMR
To use the wamr-swift library in a SwiftPM project, add the following line to the dependencies in your Package.swift file:

```swift
.package(url: "https://github.com/swiftwasm/wamr-swift", from: "0.1.0"),
let package = Package(
name: "Example",
dependencies: [
.package(name: "WAMR", url: "https://github.com/swiftwasm/wamr-swift", from: "0.1.1"),
],
targets: [
.target(name: "Example", dependencies: ["WAMR"]),
]
)

```


Expand Down

0 comments on commit d321f5e

Please sign in to comment.