mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 12:43:48 +01:00
15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
# Configuration for the OCaml compiler
|
|
|
|
if [[ -z $OPAMROOT ]]
|
|
then
|
|
|
|
# Comment these lines if you have a system-wide OCaml installation
|
|
export PATH="${QP_ROOT}/external/ocaml-bundle/bootstrap/bin:$PATH"
|
|
if [[ -f "${QP_ROOT}/external/ocaml-bundle/bootstrap/bin/opam" ]] ; then
|
|
eval $(opam env --root "${QP_ROOT}/external/ocaml-bundle/opam" --set-root)
|
|
fi
|
|
fi
|
|
source ${OPAMROOT}/opam-init/init.sh > /dev/null 2> /dev/null || true
|
|
|
|
|