Сборка х64

This commit is contained in:
Ковалев Роман Евгеньевич 2023-03-22 15:06:32 +03:00 committed by re.kovalev
parent 0020b63517
commit f533b6f197
1 changed files with 34 additions and 0 deletions

34
.vscode/tasks.json vendored
View File

@ -33,6 +33,40 @@
"isDefault": true "isDefault": true
}, },
"detail": "Задача создана отладчиком." "detail": "Задача создана отладчиком."
},
{
"type": "cppbuild",
"label": "C/C++ x64: g++.exe сборка активного файла",
"command": "C:/MinGW64/bin/g++.exe",
"args": [
"-fdiagnostics-color=always",
"${workspaceRoot}/src/*.cpp",
"${workspaceRoot}/../dependencies/glad/src/glad.c",
"-I${workspaceRoot}/include",
"--std=c++11",
"-I${workspaceRoot}/../dependencies/GLFW/include",
"-L${workspaceRoot}/../dependencies/GLFW/lib-mingw-w64",
"-I${workspaceFolder}/../dependencies/glad/include",
"-static",
"-lopengl32",
"-lglfw3dll",
"-o",
"${workspaceRoot}/${workspaceFolderBasename}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Задача создана отладчиком."
} }
], ],
"version": "2.0.0" "version": "2.0.0"