mirror of
https://github.com/Wessel/PICAMP.git
synced 2026-07-21 23:47:11 +02:00
27 lines
724 B
JSON
27 lines
724 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build",
|
|
"type": "shell",
|
|
"windows": {
|
|
"command": ".\\Build.cmd",
|
|
"args": [
|
|
"16f84" // Update this to Chip you're targeting.
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"label": "Build Samples",
|
|
"type": "shell",
|
|
"windows": {
|
|
"command": ".\\Build-Samples",
|
|
"args": [
|
|
"16f84" // Update this to Chip you're targeting.
|
|
]
|
|
}
|
|
}
|
|
]
|
|
} |