Skip to content

Commit

Permalink
added instructions for Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfmkiesel committed Sep 10, 2024
1 parent 555ae52 commit 94ad221
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,11 @@ Click [here](https://rtfmkiesel.github.io/loldrivers-webclient), wait a few seco
## Build
To build `loldrivers-webclient.wasm` yourself:
```sh
# linux
GOOS=js GOARCH=wasm go build -o .\assets\loldrivers-webclient.wasm

# windows
$Env:GOOS = "js"
$Env:GOARCH ="wasm"
go build -o .\assets\loldrivers-webclient.wasm
```

0 comments on commit 94ad221

Please sign in to comment.