10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-17 16:33:28 +02:00
QCaml/particles/lib/dune
2020-09-26 12:02:53 +02:00

18 lines
410 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 qcaml_particles)
(public_name qcaml.particles)
(libraries
str
qcaml.common
)
(modules_without_implementation xyz_ast)
(synopsis "Defines nuclei and electrons."))
(ocamllex
(modules nuclei_lexer)
)
(ocamlyacc
(modules xyz_parser)
)