I want to use build.zig to:
- Build a daemon binary
- Build a REPL binary
- Build tests
- Generate docs
What I am interested in is to build let's say the REPL and only the REPL, I added an option to do so but when I do zig build run-repl it won't run because I have to do: zig build -Dbuild-repl=true run-repl, is there a better way to do the behaviour I am describing?