update curl to 7.84.0

This commit is contained in:
BlackMATov
2022-07-03 21:24:27 +07:00
parent f69b5ade2d
commit 0f16a0c91f
3 changed files with 23 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,3 @@
build/*
.vscode/*
.clangd/*
CMakeLists.txt.user

11
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [{
"name": "LLDB Debug",
"type": "lldb",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}"
}]
}

11
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"clangd.arguments": [
"--all-scopes-completion",
"--background-index",
"--clang-tidy",
"--compile-commands-dir=${workspaceFolder}/.clangd",
"--completion-style=detailed",
"--header-insertion=never"
],
"cmake.copyCompileCommands": "${workspaceFolder}/.clangd/compile_commands.json"
}