https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 058022c3be6121e485ecf48e19424d1ed36dc535 authored by François Dupressoir on 19 January 2022, 19:29:05 UTC
Add rdirs option in config file
Tip revision: 058022c
dune
(env
 (dev     (flags :standard -rectypes -warn-error -a+31 -w +28+33-9-23-32-58))
 (release (flags :standard -rectypes -warn-error -a+31 -w +28+33-9-23-32-58)
          (ocamlopt_flags -O3 -unbox-closures)))

(include_subdirs unqualified)

(executable
 (public_name easycrypt)
 (name ec)
 (promote (until-clean))
 (libraries batteries dune-build-info dune-site inifiles why3 yojson zarith))

(generate_sites_module
 (module EcRelocate)
 (sites easycrypt)
 (sourceroot))

(ocamllex ecLexer)

(menhir
 (modules ecParser)
 (flags --table))
back to top