删除配置文件

This commit is contained in:
iridiumR 2022-03-15 07:05:09 +08:00
parent 9962f2394f
commit 2762f48e39
4 changed files with 0 additions and 141 deletions

View File

@ -1,20 +0,0 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-gcc-x64",
"compilerPath": "C://Project/LLVM/bin/gcc.exe"
}
],
"version": 4
}

View File

@ -1,26 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "gdb",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": true, // truetrue
"cwd": "C:/Project/LLVM/bin",//
"environment": [],
"externalConsole": false, // true
"MIMode": "gdb",
"miDebuggerPath": "C:\\Project\\LLVM\\bin\\gdb.exe",//gdb
"setupCommands": [
{
"description": "gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Compile"//tasks.jsonlabel
}
]
}

View File

@ -1,38 +0,0 @@
{
"files.defaultLanguage": "cpp", // ctrl+N
"editor.formatOnType": true, //
"editor.snippetSuggestions": "top", // snippets
"code-runner.runInTerminal": true, // false
"code-runner.executorMap": {
// "c": "cd $dir && gcc *.c -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
// "cpp": "cd $dir && g++ *.cpp -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe"
"c": "cd $dir && gcc *.c -fexec-charset=gb2312 -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
"cpp": "cd $dir && g++ *.cpp -std=c++17 -fexec-charset=gb2312 -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe"
// "c": "cd $dir && clang $fileName -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw -std=c11 && $dir$fileNameWithoutExt",
// "cpp": "cd $dir && clang++ *.cpp -o $fileNameWithoutExt.exe -Wall -g -Og -static-libgcc -fcolor-diagnostics --target=x86_64-w64-mingw-g++ -std=c++17 && $dir$fileNameWithoutExt"
}, // code runner
"code-runner.saveFileBeforeRun": true, // run code
"code-runner.preserveFocus": true, // falserun codefalse
"code-runner.clearPreviousOutput": false, // run codecode runner
"C_Cpp.clang_format_sortIncludes": true, // include
"C_Cpp.intelliSenseEngine": "Default", // DefaultTag Parsercpptools
"C_Cpp.errorSquiggles": "Disabled", // clanglint
"C_Cpp.autocomplete": "Disabled", // clang
"clang.cflags": [ // c
"--target=x86_64-w64-mingw",
"-std=c11",
"-Wall"
],
"clang.cxxflags": [ // c++
"--target=x86_64-w64-mingw",
"-std=c++17",
"-Wall"
],
"clang.completion.enable": true,
"C_Cpp.default.compilerPath": "C:/Program Files/LLVM/bin/gcc.exe",
// "C_Cpp.clang_format_fallbackStyle": "LLVM" // cpptools
}

View File

@ -1,57 +0,0 @@
// https://code.visualstudio.com/docs/editor/tasks
{
"version": "2.0.0",
// "tasks": [
// {
// "label": "Compile", // launch.jsonpreLaunchTask
// "command": "clang++", // 使
// "args": [
// "${file}",
// "-o", // a.exe
// "${fileDirname}/${fileBasenameNoExtension}.exe",
// "-g", //
// "-Wall", //
// "-static-libgcc", //
// "-fcolor-diagnostics",
// "--target=x86_64-w64-mingw", // targetmsvc
// "-std=c++17" // Cc11
// ], //
// "type": "shell",
// "group": {
// "kind": "build",
// "isDefault": true // falsetasks.json
// },
// "presentation": {
// "echo": true,
// "reveal": "always", // alwayssilentneverVSC
// "focus": false, // true使taskcc++true
// "panel": "shared" //
// }
// // "problemMatcher":"$gcc" // 使clang)
// }
// ]
"tasks": [
{
"label": "Compile", // launch.jsonpreLaunchTask
"command": "g++", // 使
"args": [
"${fileDirname}\\*.cpp",//
"-g",//
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
], //
"type": "shell",
"group": {
"kind": "build",
"isDefault": true // falsetasks.json
},
"presentation": {
"echo": true,
"reveal": "always", // alwayssilentneverVSC
"focus": false, // true使taskcc++true
"panel": "shared" //
}
// "problemMatcher":"$gcc" // 使clang)
}
]
}