From 904509a65e8640dcb01f5bb5f243d2fda22ebae2 Mon Sep 17 00:00:00 2001 From: jaby Date: Mon, 1 May 2023 11:02:33 +0200 Subject: [PATCH] Include asset build into makefile --- examples/PoolBox/Makefile | 5 +++++ examples/PoolBox/PoolBox.code-workspace | 13 ------------- 2 files changed, 5 insertions(+), 13 deletions(-) create mode 100644 examples/PoolBox/Makefile diff --git a/examples/PoolBox/Makefile b/examples/PoolBox/Makefile new file mode 100644 index 00000000..95a833c7 --- /dev/null +++ b/examples/PoolBox/Makefile @@ -0,0 +1,5 @@ +all clean rebuild: always + $(MAKE) $(MAKECMDGOALS) -C assets + $(MAKE) $(MAKECMDGOALS) -C application + +always: ; \ No newline at end of file diff --git a/examples/PoolBox/PoolBox.code-workspace b/examples/PoolBox/PoolBox.code-workspace index dd3880a7..b6a16f43 100644 --- a/examples/PoolBox/PoolBox.code-workspace +++ b/examples/PoolBox/PoolBox.code-workspace @@ -17,19 +17,6 @@ "isDefault": true }, "options": { - "cwd": "application", - "env": { - "PATH": "${env:JABY_ENGINE_PATH}/bin;${env:PATH}" - } - } - }, - { - "label": "build assets", - "type": "shell", - "command": "wsl make ${input:target} BUILD_PROFILE=${input:build profile} JABY_ENGINE_DIR=$(wslpath ${env:JABY_ENGINE_PATH})", - "group": "build", - "options": { - "cwd": "assets", "env": { "PATH": "${env:JABY_ENGINE_PATH}/bin;${env:PATH}" }