ligo/vendors/Preprocessor/Preprocessor.opam

16 lines
762 B
Plaintext
Raw Normal View History

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 ]
]