diff options
-rw-r--r-- | P2/.vscode/launch.json | 8 | ||||
-rw-r--r-- | P2/.vscode/tasks.json | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/P2/.vscode/launch.json b/P2/.vscode/launch.json index ba82be7..b2bbdc0 100644 --- a/P2/.vscode/launch.json +++ b/P2/.vscode/launch.json @@ -11,6 +11,7 @@ "program": "${workspaceFolder}/mapreduce", "args": ["5", "2", "test/T1/F1.txt"], "stopAtEntry": false, + "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, @@ -22,6 +23,13 @@ "ignoreFailures": true }, ], + // "customLaunchSetupCommands": [ + // { + // "description": "PLEASE WORK", + // "text": "set detach-on-fork off", + // "ignoreFailures": false + // } + //], "preLaunchTask": "Make", }, ] diff --git a/P2/.vscode/tasks.json b/P2/.vscode/tasks.json index 2ebd385..9080b5b 100644 --- a/P2/.vscode/tasks.json +++ b/P2/.vscode/tasks.json @@ -11,6 +11,10 @@ "kind": "build", "isDefault": true }, + "presentation": { + "reveal": "silent", + "clear": true + } }, ] |