Alexander Bantyev
edb3fce642
* Dynamically linked executables (ligo-bin) * Statically linked executables (ligo-static) * Docker (ligo-docker) * deb package (ligo-deb) * webide (ligo-editor) * webide docker (ligo-editor-docker) * website (ligo-website)
16 lines
793 B
Plaintext
16 lines
793 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" "bisect_ppx" "menhir" "getopt"]
|
|
build : [
|
|
[ "sh" "-c" "printf 'let version = \"%s\"' \"$(git describe --always --dirty --abbrev=0)\" > Version.ml" ]
|
|
[ "dune" "build" "-p" name "-j" jobs ]
|
|
]
|