add Taskfile

invoke tasks from pdm
This commit is contained in:
2025-02-14 11:44:52 +00:00
parent 43379f1b09
commit 17cdd84c51
3 changed files with 23 additions and 27 deletions

21
Taskfile.yml Normal file
View File

@@ -0,0 +1,21 @@
version: '3'
vars:
SHELL: pwsh
SOURCE: addon\globalPlugins\voicemeeter
DEST: ${env:appdata}\nvda\scratchpad\globalPlugins\voicemeeter\
IGNORE: ${env:appdata}\nvda\scratchpad\globalPlugins\voicemeeter\__pycache__\
tasks:
copy:
desc: Copy sources files to scratchpad directory
platforms: [windows]
cmds:
- "{{.SHELL}} -Command 'robocopy {{.SOURCE}} {{.DEST}} /NDL'"
ignore_error: true
build:
desc: Build the addon
platforms: [windows]
cmds:
- '{{.SHELL}} -Command "scons"'