mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
19 lines
399 B
Plaintext
19 lines
399 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 common)
|
|
(public_name qcaml.common)
|
|
(libraries
|
|
str
|
|
zarith
|
|
getopt
|
|
)
|
|
(c_names
|
|
math_functions
|
|
)
|
|
(c_flags
|
|
(:standard)
|
|
-Ofast -march=native -fPIC
|
|
)
|
|
(synopsis "General utilities used in all QCaml libraries."))
|