2023-01-13 18:56:03 +00:00
|
|
|
# The run config is used for both run mode and debug mode
|
|
|
|
|
|
|
|
[[configs]]
|
2023-01-13 20:33:41 +00:00
|
|
|
# the name of this task
|
|
|
|
name = "task"
|
2023-01-13 18:56:03 +00:00
|
|
|
|
|
|
|
# the program to run
|
|
|
|
program = ""
|
|
|
|
|
|
|
|
# the program arguments, e.g. args = ["arg1", "arg2"]
|
|
|
|
args = []
|
|
|
|
|
|
|
|
# current working directory, optional
|
2023-01-13 20:33:41 +00:00
|
|
|
# cwd = "${workspace}"
|
2023-06-05 18:19:56 +00:00
|
|
|
|
|
|
|
# enviroment variables, optional
|
|
|
|
# [configs.env]
|
|
|
|
# VAR1 = "VAL1"
|
|
|
|
# VAR2 = "VAL2"
|
2023-09-13 20:56:42 +00:00
|
|
|
|
|
|
|
# task to run before the run/debug session is started, optional
|
|
|
|
# prelaunch = "cargo build"
|
|
|
|
|