orderly/.vscode/tasks.json

39 lines
1.1 KiB
JSON
Raw Normal View History

2020-03-31 15:52:46 +00:00
{
// 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",
2020-03-31 16:22:51 +00:00
"cd ${workspaceFolder}/build && cmake .. -DCMAKE_BUILD_TYPE=Debug && make -j4",
2020-03-31 15:52:46 +00:00
],
"options": {
"cwd": "/bin"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "cmake test debug",
"command": "/usr/bin/bash",
"args": [
"-c",
2020-03-31 16:22:51 +00:00
"cd ${workspaceFolder}/gtest && mkdir -p build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Debug && make -j4",
2020-03-31 15:52:46 +00:00
],
"options": {
"cwd": "/bin"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}