You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
698 B
JSON
32 lines
698 B
JSON
{
|
|
"version": "2.0.0",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/build/"
|
|
},
|
|
"tasks": [
|
|
{
|
|
"label": "cmake",
|
|
"type": "shell",
|
|
"command": "cmake",
|
|
"args": [
|
|
".."
|
|
]
|
|
},
|
|
{
|
|
"label": "make",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"command": "C:\\Qt\\Qt5.14.2\\Tools\\mingw730_64\\bin\\mingw32-make.exe",
|
|
"args": []
|
|
},
|
|
{
|
|
"label": "Build my project",
|
|
"dependsOn": [
|
|
"cmake",
|
|
"make"
|
|
]
|
|
}
|
|
]
|
|
} |