2025-02-14 11:44:52 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
vars:
|
|
|
|
SHELL: pwsh
|
|
|
|
|
|
|
|
tasks:
|
2025-02-14 23:33:34 +00:00
|
|
|
default:
|
|
|
|
desc: Build the addon
|
|
|
|
cmds:
|
|
|
|
- task: build
|
|
|
|
|
2025-02-14 11:44:52 +00:00
|
|
|
copy:
|
|
|
|
desc: Copy sources files to scratchpad directory
|
|
|
|
platforms: [windows]
|
2025-02-14 23:33:34 +00:00
|
|
|
vars:
|
|
|
|
SOURCE: addon\globalPlugins\voicemeeter
|
|
|
|
DEST: ${env:appdata}\nvda\scratchpad\globalPlugins\voicemeeter\
|
2025-02-14 11:44:52 +00:00
|
|
|
cmds:
|
2025-02-14 23:33:34 +00:00
|
|
|
- "{{.SHELL}} -Command 'robocopy {{.SOURCE}} {{.DEST}} /NDL'"
|
2025-02-14 11:44:52 +00:00
|
|
|
ignore_error: true
|
|
|
|
|
|
|
|
build:
|
|
|
|
desc: Build the addon
|
|
|
|
platforms: [windows]
|
|
|
|
cmds:
|
2025-02-14 14:32:53 +00:00
|
|
|
- '{{.SHELL}} -Command "pdm run scons"'
|