10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-25 20:27:28 +02:00
QCaml/common/lib/dune

19 lines
399 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 common)
2020-09-26 12:02:53 +02:00
(public_name qcaml.common)
(libraries
2020-10-08 11:42:33 +02:00
str
2020-09-26 12:02:53 +02:00
zarith
getopt
)
(c_names
math_functions
)
(c_flags
(:standard)
-Ofast -march=native -fPIC
)
(synopsis "General utilities used in all QCaml libraries."))