Skip to content

Commit

Permalink
fix vscode tasks.json with correct build path (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuruk-mm authored Aug 30, 2023
1 parent 6fc1817 commit 8cb3c7e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@
{
"label": "Build GDExtension Lib",
"type": "cargo",
"command": "build",
"command": "run",
"args": [
"--manifest-path",
"rust/Cargo.toml"
"--",
"run",
"--only-build"
],
"problemMatcher": [
"$rustc"
],
"env": {
"GODOT4_BIN": "${workspaceFolder}/.bin/godot/godot4_bin"
},
"options": {
"cwd": "${workspaceFolder}/rust/xtask"
}
},
{
Expand Down

0 comments on commit 8cb3c7e

Please sign in to comment.