mirror of
https://github.com/Egor00f/luasqlite3-kolibrios.git
synced 2025-09-11 14:39:57 +02:00
59 lines
1.5 KiB
JSON
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"
|
|
} |