nake
nake copied to clipboard
Can nake tasks take arguments?
I'm reading through the nake documentation, because I think nake can be a great step toward a Nim-based build-system! :smile:
Subsequently I looked at the task
template. From the example
task "bin", "compiles all binaries":
for binName in binaries:
...
it looks like tasks might be able to handle arguments. (binaries
might be an argument...) Is that possible? And if so, how?