Skip to content

Commit fc809a4

Browse files
committed
chore: add tasks.json and tweak input path for local debug
1 parent 8cc83fc commit fc809a4

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"-e",
1111
"-g",
1212
"-i",
13-
"${workspaceFolder}/build/bin/enc.exe",
13+
"${workspaceFolder}/build/bin/xor-file-encryptor.exe",
1414
"-o",
1515
"${workspaceFolder}/build/bin/dec.exe"
1616
],

.vscode/tasks.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "CMake: build",
6+
"type": "shell",
7+
"command": "cmake --build build",
8+
"problemMatcher": []
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)