aboutsummaryrefslogtreecommitdiffstats
path: root/P2/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to 'P2/.vscode/launch.json')
-rw-r--r--P2/.vscode/launch.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/P2/.vscode/launch.json b/P2/.vscode/launch.json
new file mode 100644
index 0000000..ba82be7
--- /dev/null
+++ b/P2/.vscode/launch.json
@@ -0,0 +1,28 @@
+{
+ // 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": "Build & Launch",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/mapreduce",
+ "args": ["5", "2", "test/T1/F1.txt"],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ },
+ ],
+ "preLaunchTask": "Make",
+ },
+ ]
+} \ No newline at end of file