968e73b342
The build with Makefile works. Dune build to be tested.
38 lines
681 B
Plaintext
38 lines
681 B
Plaintext
(ocamllex
|
|
E_Lexer Preproc)
|
|
|
|
(menhir
|
|
(modules E_Parser))
|
|
|
|
(library
|
|
(name Preprocessor)
|
|
(public_name ligo.preproc)
|
|
(libraries
|
|
getopt
|
|
simple-utils)
|
|
(wrapped false)
|
|
(modules EvalOpt E_Parser E_Lexer E_AST Preproc)
|
|
(preprocess
|
|
(pps bisect_ppx --conditional)))
|
|
|
|
(executable
|
|
(name PreprocMain)
|
|
(modules PreprocMain)
|
|
(libraries Preproc)
|
|
(preprocess
|
|
(pps bisect_ppx --conditional)))
|
|
|
|
(executable
|
|
(name E_LexerMain)
|
|
(modules E_LexerMain)
|
|
(libraries Preproc)
|
|
(preprocess
|
|
(pps bisect_ppx --conditional)))
|
|
|
|
(executable
|
|
(name E_ParserMain)
|
|
(modules E_ParserMain)
|
|
(libraries Preproc)
|
|
(preprocess
|
|
(pps bisect_ppx --conditional)))
|