1
0
Fork 0

bam.lua: allow paths.build variable to be set from CLI

This commit is contained in:
Henrik Hautakoski 2020-12-28 18:47:28 +01:00
parent 0e2a3525e4
commit 36e4894dc7

View file

@ -22,7 +22,7 @@ end
-- paths used when building. -- paths used when building.
paths = { paths = {
build = "build", build = ScriptArgs.build_dir or "build",
object = "obj", object = "obj",
examples = "examples" examples = "examples"
} }