From 4d56bf66f45832d7f6b0bc4902ee1a50da5e0458 Mon Sep 17 00:00:00 2001 From: AzazelN28 Date: Wed, 2 Oct 2024 09:46:11 +0200 Subject: [PATCH] wip: fix README and build script --- frontend/renderer/cpp/README.md | 2 +- frontend/renderer/cpp/build | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100755 frontend/renderer/cpp/build diff --git a/frontend/renderer/cpp/README.md b/frontend/renderer/cpp/README.md index 7a3f0e20d..b5ad2b9ae 100644 --- a/frontend/renderer/cpp/README.md +++ b/frontend/renderer/cpp/README.md @@ -11,7 +11,7 @@ a C++ WebAssembly module using [Emscripten](https://emscripten.org/index.html). From the root directory of `frontend/renderer` just run: ```sh -./scripts/build +./build ``` This is going to build the docker image and run the container to build diff --git a/frontend/renderer/cpp/build b/frontend/renderer/cpp/build new file mode 100755 index 000000000..816f99940 --- /dev/null +++ b/frontend/renderer/cpp/build @@ -0,0 +1,4 @@ +#!/bin/bash +docker build . -t skia-build-tools +docker run -t -v $PWD:/tmp/renderer skia-build-tools +./scripts/copy-artifacts