Skip to content

Commit 1911969

Browse files
committed
Update VSCode launch and task configurations to use the CLI
1 parent cab816f commit 1911969

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"request": "launch",
1010
"name": "Debug wasm key",
1111
"preLaunchTask": "BuildCompiler",
12-
"program": "${workspaceFolder}/inference/target/debug/compiler",
12+
"program": "${workspaceFolder}/cli",
1313
"args": [
1414
"${workspaceFolder}/test_data/wasm/",
1515
"--wasm"
@@ -21,7 +21,7 @@
2121
"request": "launch",
2222
"name": "Debug rust key",
2323
"preLaunchTask": "BuildCompiler",
24-
"program": "${workspaceFolder}/inference/target/debug/compiler",
24+
"program": "${workspaceFolder}/cli",
2525
"args": [
2626
"${workspaceFolder}/test_data/rust/lib.rs",
2727
"--rust"

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "shell",
88
"args": [],
99
"options": {
10-
"cwd": "${workspaceFolder}/infc"
10+
"cwd": "${workspaceFolder}"
1111
},
1212
"group": "build"
1313
}

0 commit comments

Comments
 (0)