10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-10-19 22:41:48 +02:00
quantum_package/etc/ninja.rc

14 lines
254 B
Plaintext
Raw Normal View History

2019-01-09 11:31:59 +01:00
# Configuration for the Ninja package
2019-01-09 02:44:30 +01:00
export NINJA=${QP_ROOT}/bin/ninja
2019-01-15 23:31:41 +01:00
function ninja () {
if [[ -f ${QP_ROOT}/build.ninja ]] ; then
exec ninja "$@"
else
>&2 echo "Error: build.ninja does not exists.
You need to run ./configure first."
fi
}