aboutsummaryrefslogtreecommitdiffstats
path: root/P2/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--P2/.vscode/launch.json28
-rw-r--r--P2/.vscode/tasks.json17
2 files changed, 45 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
diff --git a/P2/.vscode/tasks.json b/P2/.vscode/tasks.json
new file mode 100644
index 0000000..2ebd385
--- /dev/null
+++ b/P2/.vscode/tasks.json
@@ -0,0 +1,17 @@
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Make",
+ "type": "shell",
+ "command": "make",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ },
+
+ ]
+} \ No newline at end of file