10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-09-27 03:51:01 +02:00
quantum_package/etc/ninja.rc

14 lines
264 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
2019-01-15 23:56:00 +01:00
${QP_ROOT}/bin/ninja "$@"
2019-01-15 23:31:41 +01:00
else
>&2 echo "Error: build.ninja does not exists.
You need to run ./configure first."
fi
}