association

This commit is contained in:
2026-05-10 02:22:46 +07:00
parent eb79efb228
commit 90b9d32dd5
17 changed files with 1018880 additions and 277 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++: g++ сборка и отладка активного файла",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/main",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Включить автоматическое форматирование для gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Задать для варианта приложения дизассемблирования значение Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
],
"existing": false,
"preLaunchTask": "C/C++: g++ сборка активного файла",
"detail": "ЗадачаПредварительногоЗапуска: C/C++: g++ сборка активного файла",
"taskDetail": "Задача создана отладчиком.",
"taskStatus": "Recently Used Task",
"isDefault": true,
"miDebuggerPath": "/usr/bin/gdb"
}
]
}
+1 -33
View File
@@ -1,33 +1 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ сборка активного файла",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"-fopenmp",
"${workspaceFolder}/main.cpp",
"${workspaceFolder}/Xenith/core.cpp",
"${workspaceFolder}/Xenith/token/token.cpp",
"-I", "${workspaceFolder}/Xenith",
"-I", "${workspaceFolder}/Xenith/token",
"-o", "${workspaceFolder}/main",
"-lvulkan"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Задача создана отладчиком."
}
],
"version": "2.0.0"
}
{ "tasks": [ { "type": "cppbuild", "label": "C/C++: g++ сборка активного файла", "command": "/usr/bin/g++", "args": [ "-fdiagnostics-color=always", "-g", "-fopenmp", "${workspaceFolder}/main.cpp", "${workspaceFolder}/Xenith/core.cpp", "${workspaceFolder}/Xenith/token/token.cpp", "-I", "${workspaceFolder}/Xenith", "-I", "${workspaceFolder}/Xenith/token", "-o", "${workspaceFolder}/main", "-lvulkan" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "Задача создана отладчиком." } ], "version": "2.0.0" }