Lines Matching +full:ninja +full:- +full:bin
1 #!/bin/bash
3 # This script is intented to wrap the execution of ninja so that we
4 # can do some checks before each ninja run.
8 # Blueprint-based build system. When used by another script, the following
13 # NINJA
23 set -e
28 [ -z "$BUILDDIR" ] && BUILDDIR=`dirname "${BASH_SOURCE[0]}"`
30 # NINJA should be set to the path of the ninja executable. By default, this
31 # is just "ninja", and will be looked up in $PATH.
32 [ -z "$NINJA" ] && NINJA=ninja
35 if [ ! -f "${BUILDDIR}/.blueprint.bootstrap" ]; then
49 if [ -z "$BLUEPRINTDIR" ]; then