9 lines
346 B
Bash
Executable file
9 lines
346 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# The real configure script uses jq to parse cue output
|
|
cue export -- *.cue *.yaml | jq -r -f configure.jq --args -- *.cue *.yaml
|
|
|
|
# TODO: generate line-by-line asset list with jq and process them to generate
|
|
# build.ninja in builddir="$1". Regenerate any changed *.jsons at configure
|
|
# time, hopefully ninja picks up those changes!
|