10
1
mirror of https://gitlab.com/scemama/qmcchem.git synced 2024-06-20 12:12:04 +02:00
qmcchem/scripts/compile_ocaml.sh

12 lines
180 B
Bash
Raw Normal View History

2015-12-20 01:09:14 +01:00
#!/bin/bash
if [[ -z ${QMCCHEM_PATH} ]]
then
echo "Error: qmcchemrc not loaded"
exit -1
fi
cd ${QMCCHEM_PATH}/ocaml || exit -1
2015-12-29 02:37:35 +01:00
exec ninja -f generated.ninja ${@} || exit -1