diff --git a/.gitignore b/.gitignore index 316af6224233d8c1a92a712ba395c24f64be58a3..c482bee58f9de103b4c46def9f0247484b22dbc0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ build .vscode/c_cpp_properties.json -.vscode/launch.json .vscode/settings.json \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000000000000000000000000000000000..ca6e459b03f3d32057880cf74969628bb0bfef64 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,32 @@ +{ + // 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": "(ctest) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${cmake.testProgram}", + "args": ["${cmake.testArgs}"], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + }, + { + "description": "Set Disassembly Flavor to Intel", + "text": "-gdb-set disassembly-flavor intel", + "ignoreFailures": true + } + ] + } + ] +} \ No newline at end of file