Created
July 25, 2024 11:02
-
-
Save user-grinch/9717e30173c9c7661d442ef375b19ed9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"name": "CODE", | |
"includePath": [ | |
"${workspaceFolder}/**", | |
"C:\\Program Files\\Windows Kits\\10\\Include\\10.0.19041.0\\ucrt\\*" | |
], | |
"defines": [ | |
"_DEBUG", | |
], | |
"windowsSdkVersion": "10.0.19041.0", | |
"compilerPath": "C:/Program Files/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30037/bin/Hostx64/x64/cl.exe", | |
"cStandard": "c17", | |
"cppStandard": "c++20", | |
"intelliSenseMode": "windows-msvc-x86" | |
} | |
], | |
"version": 4 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Application", | |
"type": "cppvsdbg", | |
"request": "launch", | |
"program": "${fileDirname}\\build\\${fileBasenameNoExtension}.exe", | |
"args": [], | |
"stopAtEntry": false, | |
"cwd": "${fileDirname}", | |
"environment": [], | |
"console": "externalTerminal" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.associations": { | |
"algorithm": "cpp", | |
"chrono": "cpp", | |
"functional": "cpp", | |
"memory": "cpp", | |
"thread": "cpp", | |
"xmemory": "cpp", | |
"iosfwd": "cpp", | |
"array": "cpp", | |
"atomic": "cpp", | |
"bit": "cpp", | |
"cctype": "cpp", | |
"charconv": "cpp", | |
"clocale": "cpp", | |
"cmath": "cpp", | |
"compare": "cpp", | |
"concepts": "cpp", | |
"condition_variable": "cpp", | |
"cstddef": "cpp", | |
"cstdint": "cpp", | |
"cstdio": "cpp", | |
"cstdlib": "cpp", | |
"cstring": "cpp", | |
"ctime": "cpp", | |
"cwchar": "cpp", | |
"exception": "cpp", | |
"filesystem": "cpp", | |
"format": "cpp", | |
"forward_list": "cpp", | |
"fstream": "cpp", | |
"initializer_list": "cpp", | |
"iomanip": "cpp", | |
"ios": "cpp", | |
"iostream": "cpp", | |
"istream": "cpp", | |
"iterator": "cpp", | |
"limits": "cpp", | |
"list": "cpp", | |
"locale": "cpp", | |
"map": "cpp", | |
"mutex": "cpp", | |
"new": "cpp", | |
"numeric": "cpp", | |
"optional": "cpp", | |
"ostream": "cpp", | |
"ratio": "cpp", | |
"shared_mutex": "cpp", | |
"sstream": "cpp", | |
"stdexcept": "cpp", | |
"stop_token": "cpp", | |
"streambuf": "cpp", | |
"string": "cpp", | |
"system_error": "cpp", | |
"tuple": "cpp", | |
"type_traits": "cpp", | |
"typeinfo": "cpp", | |
"unordered_map": "cpp", | |
"utility": "cpp", | |
"valarray": "cpp", | |
"vector": "cpp", | |
"xfacet": "cpp", | |
"xhash": "cpp", | |
"xiosbase": "cpp", | |
"xlocale": "cpp", | |
"xlocbuf": "cpp", | |
"xlocinfo": "cpp", | |
"xlocmes": "cpp", | |
"xlocmon": "cpp", | |
"xlocnum": "cpp", | |
"xloctime": "cpp", | |
"xstddef": "cpp", | |
"xstring": "cpp", | |
"xtr1common": "cpp", | |
"xtree": "cpp", | |
"xutility": "cpp", | |
"*.rh": "cpp", | |
"csignal": "cpp", | |
"coroutine": "cpp", | |
"any": "cpp", | |
"variant": "cpp", | |
"codecvt": "cpp", | |
"cstdarg": "cpp", | |
"span": "cpp", | |
"regex": "cpp", | |
"unordered_set": "cpp", | |
"random": "cpp", | |
"expected": "cpp", | |
"numbers": "cpp", | |
"ranges": "cpp", | |
"set": "cpp", | |
"stack": "cpp", | |
"deque": "cpp" | |
}, | |
"sonarlint.pathToCompileCommands": "${workspaceFolder}\\compile_commands.json", | |
"code-runner.runInTerminal": true, | |
"code-runner.enableAppInsights": false, | |
"code-runner.ignoreSelection": true, | |
"code-runner.executorMap": { | |
"python": "$pythonPath -u $fullFileName", | |
"cpp": " \"C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/Tools/VsDevCmd.bat\" && cd $dir\\build && cl \"..\\$fileName\" /Zi /EHsc /Fe:$fileNameWithoutExt.exe && $fileNameWithoutExt.exe ", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment