Fixed dune file.
This commit is contained in:
parent
8ce6d00d06
commit
9b6b13cda3
2
vendors/Preproc/Preproc.mll
vendored
2
vendors/Preproc/Preproc.mll
vendored
@ -4,7 +4,7 @@
|
||||
(* START OF HEADER *)
|
||||
|
||||
module Region = Simple_utils.Region
|
||||
(*module Pos = Simple_utils.Pos*)
|
||||
module Pos = Simple_utils.Pos
|
||||
|
||||
let sprintf = Printf.sprintf
|
||||
|
||||
|
36
vendors/Preproc/dune
vendored
36
vendors/Preproc/dune
vendored
@ -1,23 +1,37 @@
|
||||
(ocamllex E_Lexer Preproc)
|
||||
(ocamllex
|
||||
E_Lexer Preproc)
|
||||
|
||||
(menhir
|
||||
(modules E_Parser))
|
||||
|
||||
(library
|
||||
(name PreProc)
|
||||
(name Preproc)
|
||||
(public_name ligo.preproc)
|
||||
(libraries
|
||||
getopt
|
||||
simple-utils)
|
||||
(wrapped false)
|
||||
(modules E_Parser E_Lexer E_AST Preproc))
|
||||
(modules EvalOpt E_Parser E_Lexer E_AST Preproc)
|
||||
(preprocess
|
||||
(pps bisect_ppx --conditional)))
|
||||
|
||||
(test
|
||||
(modules ProcMain)
|
||||
(libraries PreProc)
|
||||
(name ProcMain))
|
||||
(executable
|
||||
(name PreprocMain)
|
||||
(modules PreprocMain)
|
||||
(libraries Preproc)
|
||||
(preprocess
|
||||
(pps bisect_ppx --conditional)))
|
||||
|
||||
(test
|
||||
(modules E_Main)
|
||||
(libraries PreProc)
|
||||
(name E_Main))
|
||||
(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)))
|
||||
|
Loading…
Reference in New Issue
Block a user