ligo/vendors/Preprocessor/Preprocessor.opam
Christian Rinderknecht c0ee726fb2 Simple_utils is now used as a library by the local builds.
Preprocessor is now a library installed by opam.
Replaced ligolang@gmail.com by contact@ligolang.org in opam files.
Reformatted some opam files.
Removed #line directive from preprocessor.
Added to the interface of ParserUnit.
Script messages.sh now checks the identity of .msg and .msg.old
to avoid undue warning about possibly different LR items.
2020-04-07 18:33:46 +02:00

16 lines
762 B
Plaintext

opam-version : "2.0"
name : "Preprocessor"
version : "1.0"
synopsis : "A C#-like preprocessor for LIGO"
description : "The following preprocessing directives are supported: #define, #elif, #else, #endif, #endregion, #error, #if, #include, #region, #undef."
maintainer : "rinderknecht@free.fr"
authors : "Christian Rinderknecht"
license : "MIT"
homepage : "https://gitlab.com/ligolang/Preprocessor"
bug-reports : "https://gitlab.com/ligolang/ligo-utils/issues"
depends : ["dune" "base" "ocaml" "simple-utils"]
build : [
[ "sh" "-c" "printf 'let version = \"%s\"' \"$(git describe --always --dirty --abbrev=0)\" > Version.ml" ]
[ "dune" "build" "-p" name "-j" jobs ]
]