Add build-all-win32-examples task to dev env

This commit is contained in:
Tilen Majerle 2022-07-31 21:15:56 +02:00
parent 01cef12325
commit 3b5345983b

12
.vscode/tasks.json vendored
View File

@ -69,5 +69,17 @@
},
"problemMatcher": []
},
{
"label": "Build all WIN32 examples",
"type": "shell",
"command": "python",
"args": [
"build_all_examples.py"
],
"options": {
"cwd": "${workspaceFolder}/examples/win32"
},
"problemMatcher": []
}
]
}