mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 06:33:38 +01:00
14 lines
223 B
Bash
14 lines
223 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ -z ${QMCCHEM_PATH} ]]
|
||
|
then
|
||
|
echo "Error: qmcchemrc not loaded"
|
||
|
exit -1
|
||
|
fi
|
||
|
|
||
|
cd ${QMCCHEM_PATH}/ocaml || exit -1
|
||
|
|
||
|
cp ${QMCCHEM_PATH}/EZFIO/Ocaml/ezfio.ml . || exit -1
|
||
|
|
||
|
exec ninja -f generated.ninja ${@}
|