8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:43:03 +01:00

Update vscode task to new format.

This commit is contained in:
Adriano dos Santos Fernandes 2021-05-06 14:33:11 -03:00
parent e02c10e082
commit ce430f335e

24
.vscode/tasks.json vendored
View File

@ -1,13 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"args": [
"TARGET=Debug",
"engine",
"-j9"
],
"showOutput": "always"
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "make",
"args": [
"TARGET=Debug",
"engine",
"-j7"
],
"problemMatcher": [],
"group": "build"
}
]
}