mirror of https://github.com/lapce/lapce.git
24 lines
448 B
TOML
24 lines
448 B
TOML
# The run config is used for both run mode and debug mode
|
|
|
|
[[configs]]
|
|
# the name of this task
|
|
name = "task"
|
|
|
|
# the program to run
|
|
program = ""
|
|
|
|
# the program arguments, e.g. args = ["arg1", "arg2"]
|
|
args = []
|
|
|
|
# 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
|
|
# prelaunch = "cargo build"
|
|
|