mirror of
https://github.com/onyx-and-iris/nvda-addon-voicemeeter.git
synced 2025-02-23 05:15:07 +00:00
22 lines
526 B
YAML
22 lines
526 B
YAML
|
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"'
|