7 lines
241 B
TOML
7 lines
241 B
TOML
[build]
|
|
# Just plain old shell command. You could use `make` as well.
|
|
cmd = "go build -o ./tmp/main ."
|
|
# Binary file yields from `cmd`.
|
|
bin = "tmp/main"
|
|
# Customize binary.
|
|
full_bin = "./tmp/main -socket=./log.socket -udpAddr=localhost:4040" |