diff options
author | vnugent <public@vaughnnugent.com> | 2024-09-06 21:57:48 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-09-06 21:57:48 -0400 |
commit | 0cae8cabf8fae1cf068cc026bd8b07b134d47284 (patch) | |
tree | 75d9a378b4df4e35b0a04405938898eb174100e0 /Taskfile.yaml | |
parent | dd89d9d9c901dce145fc76bf56be1b696d4bf796 (diff) |
avoid vnbuild deps conflicts
Diffstat (limited to 'Taskfile.yaml')
-rw-r--r-- | Taskfile.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml index 0af15f3..cbc4a7a 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -120,6 +120,9 @@ tasks: BUILD_DIR: 'build/win-x64' cmds: + #remove deps dir to avoid conflicts with vnbuild + - 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 |