orderly/.vscode/tasks.json
2020-03-31 23:52:46 +08:00

39 lines
1.0 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "cmake main debug",
"command": "/usr/bin/bash",
"args": [
"-c",
"cd ${workspaceFolder}/build && cmake .. && make -j4",
],
"options": {
"cwd": "/bin"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "cmake test debug",
"command": "/usr/bin/bash",
"args": [
"-c",
"cd ${workspaceFolder}/gtest && mkdir -p build && cd build && cmake .. && make -j4",
],
"options": {
"cwd": "/bin"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}