From cd76836765b577f7c6ee0ae3e632a286ee57b723 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 28 May 2024 08:15:33 +0200 Subject: [PATCH] Add cura_wasm.jinja profile The new cura_wasm.jinja configuration profile has been added. This profile includes settings and options specific to Emscripten and WebAssembly (wasm), along with certain build, tool, and requirement configurations like skipping tests and disabling plugins. This profile was already tested during the work on NP-5 and is merged on the dev branch Contribute to NP202 --- profiles/cura_wasm.jinja | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 profiles/cura_wasm.jinja diff --git a/profiles/cura_wasm.jinja b/profiles/cura_wasm.jinja new file mode 100644 index 0000000..fe4c0ad --- /dev/null +++ b/profiles/cura_wasm.jinja @@ -0,0 +1,15 @@ +include(cura.jinja) + +[tool_requires] +emsdk/3.1.50 + +[settings] +os=Emscripten +arch=wasm + +[conf] +tools.build:skip_test=True + +[options] +curaengine:enable_plugins=False +curaengine:enable_arcus=False \ No newline at end of file