orderly/.vscode/tasks.json

39 lines
1.1 KiB
JSON
Raw Permalink 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",
2020-04-01 02:26:05 +00:00
"command": "bash",
2020-03-31 15:52:46 +00:00
"args": [
"-c",
2020-04-01 02:35:56 +00:00
"cd ${workspaceFolder} && 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
}
},
{
"type": "shell",
"label": "cmake test debug",
2020-04-01 02:26:05 +00:00
"command": "bash",
2020-03-31 15:52:46 +00:00
"args": [
"-c",
2020-04-01 02:26:05 +00:00
"cd ${fileDirname} && 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
}
}
]
}