67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
|
{
|
||
|
"tasks": [
|
||
|
{
|
||
|
"type": "cppbuild",
|
||
|
"label": "g++",
|
||
|
"command": "C:/MinGW/bin/g++.exe",
|
||
|
"args": [
|
||
|
"-c",
|
||
|
"${workspaceRoot}/src/*.cpp",
|
||
|
|
||
|
"-I${workspaceRoot}/include",
|
||
|
|
||
|
"--std=c++11",
|
||
|
|
||
|
"-I${workspaceRoot}/../dependencies/glm",
|
||
|
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${fileDirname}"
|
||
|
},
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"detail": "Задача создана отладчиком."
|
||
|
},
|
||
|
{
|
||
|
"type": "cppbuild",
|
||
|
"label": "ar",
|
||
|
"command": "C:/MinGW/bin/ar.exe",
|
||
|
"args": [
|
||
|
"rcs",
|
||
|
"${workspaceRoot}/lib${workspaceFolderBasename}.a",
|
||
|
|
||
|
"${workspaceRoot}/.vscode/*.o"
|
||
|
],
|
||
|
"options": {
|
||
|
"cwd": "${fileDirname}"
|
||
|
},
|
||
|
"problemMatcher": [
|
||
|
"$gcc"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
},
|
||
|
"detail": "Задача создана отладчиком."
|
||
|
},
|
||
|
{
|
||
|
"label": "Сборка статической библиотеки",
|
||
|
"dependsOn": [
|
||
|
"g++",
|
||
|
"ar"
|
||
|
],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
],
|
||
|
"version": "2.0.0"
|
||
|
}
|