-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96b9103
commit 6e04ec9
Showing
15 changed files
with
770 additions
and
804 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# The run config is used for both run mode and debug mode | ||
|
||
[[configs]] | ||
# the name of this task | ||
name = "task" | ||
|
||
# the type of the debugger. If not set, it can't be debugged but can still be run | ||
# type = "lldb" | ||
|
||
# the program to run | ||
program = "cargo" | ||
|
||
# the program arguments, e.g. args = ["arg1", "arg2"], optional | ||
args = ["lrun", "--", "-f"] | ||
|
||
# current working directory, optional | ||
# cwd = "${workspace}" | ||
|
||
# enviroment variables, optional | ||
# [configs.env] | ||
# VAR1 = "VAL1" | ||
# VAR2 = "VAL2" | ||
|
||
# task to run before the run/debug session is started, optional | ||
# [configs.prelaunch] | ||
# program = "cargo" | ||
# args = [ | ||
# "build", | ||
# ] |
Oops, something went wrong.