mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
vscode
This commit is contained in:
parent
398da9eb0b
commit
874c673604
2 changed files with 10 additions and 13 deletions
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
|
@ -37,7 +37,7 @@
|
|||
"ignoreFailures": true
|
||||
}
|
||||
],
|
||||
"preLaunchTask": "Debug: clean & make client",
|
||||
"preLaunchTask": "client: Debug: clean & make",
|
||||
"miDebuggerPath": "/usr/bin/gdb"
|
||||
}
|
||||
],
|
||||
|
|
21
.vscode/tasks.json
vendored
21
.vscode/tasks.json
vendored
|
@ -4,7 +4,7 @@
|
|||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Make all & run",
|
||||
"label": "all: Make & run",
|
||||
"type": "shell",
|
||||
"command": "make -j && ./pm3",
|
||||
"problemMatcher": [
|
||||
|
@ -16,7 +16,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"label": "Make TARGET",
|
||||
"label": "choose: Make",
|
||||
"type": "shell",
|
||||
"command": "make ${input:componentType} -j",
|
||||
"problemMatcher": [
|
||||
|
@ -25,7 +25,7 @@
|
|||
"group": "build",
|
||||
},
|
||||
{
|
||||
"label": "Debug: make client",
|
||||
"label": "client: Debug: make",
|
||||
"type": "shell",
|
||||
"command": "make client -j DEBUG=1",
|
||||
"problemMatcher": [
|
||||
|
@ -34,7 +34,7 @@
|
|||
"group": "build",
|
||||
},
|
||||
{
|
||||
"label": "Debug: clean & make client",
|
||||
"label": "client: Debug: clean & make",
|
||||
"type": "shell",
|
||||
"command": "make client/clean && make client -j DEBUG=1",
|
||||
"problemMatcher": [
|
||||
|
@ -43,25 +43,22 @@
|
|||
"group": "build",
|
||||
},
|
||||
{
|
||||
"label": "Flash fullimage",
|
||||
"label": "fullimage: Make & Flash",
|
||||
"type": "shell",
|
||||
"command": "./pm3-flash-fullimage",
|
||||
"command": "make fullimage && ./pm3-flash-fullimage",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "FLASH BOOTROM",
|
||||
"label": "BOOTROM: Make & Flash",
|
||||
"type": "shell",
|
||||
"command": "./pm3-flash-bootrom",
|
||||
"command": "make bootrom && ./pm3-flash-bootrom",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Run client",
|
||||
"type": "shell",
|
||||
"command": "./pm3",
|
||||
"problemMatcher": [],
|
||||
"dependsOn": [
|
||||
"Release: build client"
|
||||
]
|
||||
"problemMatcher": []
|
||||
}
|
||||
],
|
||||
"inputs": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue