aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-09-06 13:29:41 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-09-06 13:29:41 -0400
commit50c7876d534c00c8676255d4442175ac3f445f2e (patch)
tree9e50610c70d6d1a155594fa92bbf0691685578be
parentcd21e5c4ec5da24abd7c3f50ce564539e89f8aec (diff)
remove dependency dir when build completes
-rw-r--r--Taskfile.yaml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml
index 0af15f3..6b33711 100644
--- a/Taskfile.yaml
+++ b/Taskfile.yaml
@@ -120,6 +120,8 @@ tasks:
BUILD_DIR: 'build/win-x64'
cmds:
+ - defer: powershell rm -Recurse -Force "{{ .BUILD_DIR }}/_deps"
+
#invoke cmake build
- cmake -S . -B {{.BUILD_DIR}} -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release -DNC_BUILD_TESTS=OFF
- cmake --build {{.BUILD_DIR}} --config Release
@@ -153,6 +155,7 @@ tasks:
cmds:
#tar up the source
- tar -czf "{{.TARGET_SOURCE}}" {{ .SOURCE_FILES | join " " }}
+
#################################
#