10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-11 22:03:37 +02:00
QCaml/gaussian_integrals/lib/dune

15 lines
441 B
Plaintext
Raw Normal View History

2020-09-26 12:02:53 +02:00
; name = name of the supermodule that will wrap all source files as submodules
; public_name = name of the library for ocamlfind and opam
(library
2020-10-09 09:47:57 +02:00
(name gaussian_integrals)
2020-09-26 12:02:53 +02:00
(public_name qcaml.gaussian_integrals)
(libraries
str
qcaml.common
qcaml.linear_algebra
2020-10-10 10:59:09 +02:00
qcaml.gaussian
2020-09-27 23:55:42 +02:00
qcaml.operators
2020-09-26 12:02:53 +02:00
)
(modules_without_implementation matrix_on_basis)
(synopsis "Integrals on the Gaussian basis sets."))