Revision control

Copy as Markdown

Other Tools

{
"version": "2.0.0",
"tasks": [
{
"label": "Configure (gcc)",
"detail": "Default ./configure.py invocation for gcc. Run your own if you want.",
"group": "build",
"type": "shell",
"command": "python3 ./configure.py --cc gcc --compiler-cache=ccache --build-tool=ninja --without-documentation --debug-mode --build-targets=\"static,tests,bogo_shim\"",
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
}
},
{
"label": "Configure (msvc)",
"detail": "Default ./configure.py invocation for msvc. Run your own if you want.",
"group": "build",
"type": "shell",
"shell": {
"args": [
]
},
"command": "python ./configure.py --cc msvc --compiler-cache=sccache.exe --build-tool=ninja --link-method=hardlink --without-documentation --debug-mode --build-targets=\"static,tests\"",
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
}
},
{
"label": "Build All",
"group": "build",
"type": "shell",
"linux": {
"command": "make -j $(nproc)",
"problemMatcher": "$gcc"
},
"osx": {
"command": "make -j $(sysctl -n hw.logicalcpu)",
"problemMatcher": "$gcc"
},
"windows": {
"command": "ninja",
"problemMatcher": "$msCompile"
},
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
}
},
{
"label": "Build Unittests",
"group": "build",
"type": "shell",
"linux": {
"command": "make -j $(nproc) tests"
},
"osx": {
"command": "make -j $(sysctl -n hw.logicalcpu) tests"
},
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
},
"problemMatcher": "$gcc"
},
{
"label": "Build BoGo Shim",
"group": "build",
"type": "shell",
"linux": {
"command": "make -j $(nproc) bogo_shim"
},
"osx": {
"command": "make -j $(sysctl -n hw.logicalcpu) bogo_shim"
},
"presentation": {
"reveal": "always",
"panel": "shared",
"close": true
},
"problemMatcher": "$gcc"
},
{
"label": "Run Unittests",
"detail": "run all unittests",
"group": "test",
"type": "shell",
"command": "python3 ${workspaceFolder}/src/editors/vscode/scripts/test.py",
"dependsOn": "Build Unittests",
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
},
"problemMatcher": [
{
"owner": "cpp",
"pattern": {
"regexp": "^Failure \\d+: (.+Internal error: False assertion .*) @(.*):(.*)$",
"message": 1,
"file": 2,
"line": 3,
"column": 0,
"endColumn": 0
}
},
{
"owner": "cpp",
"pattern": {
"regexp": "Failure \\d+: (.*) \\(at ([^:]+):(\\d+)\\)",
"message": 1,
"file": 2,
"line": 3,
"column": 0,
"endColumn": 0
}
},
{
"owner": "cpp",
"pattern": {
"regexp": "Failure \\d+: (.*)",
"message": 1,
"file": 0,
"line": 0,
"column": 0,
"endColumn": 0
}
}
]
},
{
"label": "Run Current Unittest File",
"detail": "run the unittest file that is currently in focus",
"group": "test",
"type": "shell",
"command": "python3 ${workspaceFolder}/src/editors/vscode/scripts/test.py ${relativeFile}",
"dependsOn": "Build Unittests",
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
},
"problemMatcher": [
{
"owner": "cpp",
"pattern": {
"regexp": "^Failure \\d+: (.+Internal error: False assertion .*) @(.*):(.*)$",
"message": 1,
"file": 2,
"line": 3,
"column": 0,
"endColumn": 0
}
},
{
"owner": "cpp",
"pattern": {
"regexp": "Failure \\d+: (.*) \\(at ([^:]+):(\\d+)\\)",
"message": 1,
"file": 2,
"line": 3,
"column": 0,
"endColumn": 0
}
},
{
"owner": "cpp",
"pattern": {
"regexp": "Failure \\d+: (.*)",
"message": 1,
"file": 0,
"line": 0,
"column": 0,
"endColumn": 0
}
}
]
},
{
"label": "Run BoGo Tests",
"group": "test",
"type": "shell",
"command": "python3 ${workspaceFolder}/src/editors/vscode/scripts/bogo.py",
"dependsOn": "Build BoGo Shim",
"presentation": {
"reveal": "always",
"panel": "shared",
"close": false
},
"problemMatcher": {
"owner": "cpp",
"pattern": [
{
"regexp": "^FAILED \\(([^\\)]+)\\)$",
"kind": "file",
"file": 1
},
{
"regexp": "^(.*)stdout:$",
"message": 1
}
]
}
}
]
}