files
luasqlite3/.vscode/tasks.json
2025-01-07 22:54:09 +05:00

59 lines
1.5 KiB
JSON

{
"tasks": [
{
"type": "shell",
"label": "Rebuild",
"command": "-C ${workspaceFolder} rebuild",
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Rebuild this lib",
"problemMatcher": [
"$gcc"
],
"options": {
"shell": {
"executable": "make",
}
}
},
{
"type": "shell",
"label": "Build",
"command": "-C ${workspaceFolder} build",
"group": {
"kind": "build",
"isDefault": false
},
"detail": "Build this lib",
"problemMatcher": [
"$gcc"
],
"options": {
"shell": {
"executable": "make",
}
}
},
{
"type": "shell",
"label": "Debug Build",
"command": "-C ${workspaceFolder} \"MYCFLAGS=-DNDEBUG\" build",
"group": {
"kind": "build",
"isDefault": false
},
"detail": "Debug build this lib",
"problemMatcher": [
"$gcc"
],
"options": {
"shell": {
"executable": "make",
}
}
}
],
"version": "2.0.0"
}