10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-21 12:42:13 +02:00
quantum_package/ocaml/Qpackage.ml

12 lines
267 B
OCaml
Raw Normal View History

2014-08-27 16:38:13 +02:00
open Core.Std;;
(** Variables related to the quantum package installation *)
let root =
match (Sys.getenv "QPACKAGE_ROOT") with
| None -> failwith "QPACKAGE_ROOT environment variable is not set.
Please source the quantum_package.rc file."
| Some x -> x
;;