diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -24,19 +24,20 @@ mkdir ~/mcuboot The project is built with the Meson build system. ``` -meson setup build --prefix / -ninja -C build -meson install -C build --destdir artifacts +meson setup build +cd build +ninja +meson install --destdir artifacts ``` The resulting artifacts can be listed with `tree`. ``` -tree build/artifacts +tree artifacts ``` These artifacts are organized as static website. It can be opened with Firefox. ``` -find build/artifacts -name 'index.html' -exec firefox {} \; +firefox artifacts/index.html ``` |