{// 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":"(Windows) Launch","type":"cppvsdbg","request":"launch","program":"cmd","args":["/C","${fileDirname}\\${fileBasenameNoExtension}.exe","&","pause"],"stopAtEntry":false,"cwd":"${workspaceFolder}","environment":[],"externalConsole":true},{"name":"g++.exe - Build and debug active file","type":"cppdbg","request":"launch","program":"${fileDirname}\\${fileBasenameNoExtension}.exe","args":[],"stopAtEntry":false,"cwd":"${workspaceFolder}","environment":[],"externalConsole":false,"MIMode":"gdb","miDebuggerPath":"C:\\mingw64\\bin\\gdb.exe","setupCommands":[{"description":"Enable pretty-printing for gdb","text":"-enable-pretty-printing","ignoreFailures":true}],"preLaunchTask":"task g++"}]}
{// See https://go.microsoft.com/fwlink/?LinkId=733558// for the documentation about the tasks.json format"version":"2.0.0","tasks":[{"label":"task g++","type":"shell","command":"C:\\mingw64\\bin\\g++.exe","args":["-g","${file}","-o","${fileDirname}\\${fileBasenameNoExtension}.exe"],"options":{"cwd":"C:\\mingw64\\bin"},"problemMatcher":["$gcc"],"group":"build"}]}