mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
; name = name of the supermodule that will wrap all source files as submodules
|
|
; public_name = name of the library for ocamlfind and opam
|
|
(library
|
|
(name gaussian_integrals)
|
|
(public_name qcaml.gaussian_integrals)
|
|
(libraries
|
|
str
|
|
qcaml.common
|
|
qcaml.linear_algebra
|
|
qcaml.gaussian
|
|
qcaml.operators
|
|
)
|
|
(modules_without_implementation matrix_on_basis)
|
|
(synopsis "Integrals on the Gaussian basis sets."))
|