10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-02 03:15:19 +02:00
qmcchem/configure.sh
2015-12-18 22:27:18 +01:00

18 lines
266 B
Bash
Executable File

#!/bin/bash
set -e
set -u
cd install
mkdir -p Downloads _build
mkdir -p bin
if [[ ! -x ../bin/ninja ]]
then
echo "Installing Ninja"
./scripts/install_ninja.sh &> _build/ninja.log
touch _build/ninja.ok
fi
touch ../{src,ocaml}/ls_md5
exec ../bin/ninja "$@"