We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eac479 commit 42a993dCopy full SHA for 42a993d
1 file changed
README.md
@@ -3,6 +3,17 @@
3
`uvwasi` implements the [WASI][] system call API. Under the hood, `uvwasi`
4
leverages [libuv][] where possible for maximum portability.
5
6
+## Building Locally
7
+
8
+To build with [CMake](https://cmake.org/):
9
10
+```sh
11
+$ mkdir -p out/cmake ; cd out/cmake # create build directory
12
+$ cmake ../.. -DBUILD_TESTING=ON # generate project with test
13
+$ cmake --build . # build
14
+$ ctest -C Debug --output-on-failure # run tests
15
+```
16
17
## Example Usage
18
19
```c
0 commit comments