diff --git a/vs_code/launch.json b/vs_code/launch.json index 4d1a665..9d6697c 100644 --- a/vs_code/launch.json +++ b/vs_code/launch.json @@ -1,47 +1,58 @@ { - "version": "0.2.0", - "configurations": [ - { - "name": "g++ Debug", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/bin/black_hole.exe", - "args": [], - "stopAtEntry": false, - "cwd": "${workspaceFolder}/src", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ], - "preLaunchTask": "build" - }, - { - "name": "CUDA Debug", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/bin/black_hole.exe", - "args": [], - "stopAtEntry": false, - "cwd": "${workspaceFolder}/src", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ], - "preLaunchTask": "build-cuda" - } - ] -} \ No newline at end of file + "version": "0.2.0", + "configurations": + [ + { + "name": "g++ Debug", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/bin/black_hole.exe", + "args": + [ + ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/src", + "environment": + [ + ], + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe", + "setupCommands": + [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ], + "preLaunchTask": "build" + }, + { + "name": "CUDA Debug", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/bin/black_hole.exe", + "args": + [ + ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/src", + "environment": + [ + ], + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe", + "setupCommands": + [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ], + "preLaunchTask": "build-cuda" + } + ] +}