aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration/dune
blob: 74ace87f9fd01512d3808d38f24ab4b1360118b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(library
 (name importConf)
 (libraries 
   decoders
   otoml
   menhirLib
   importCSV
   re
   helpers
   importDataTypes
   importExpression
   importErrors
 )
 (preprocess (pps 
   ppx_deriving.ord
   ppx_deriving.show 
   ppx_deriving.eq 
 ))
 (foreign_stubs (language c) (names locale))
)

(rule
 (targets expression_parser_messages.ml)
 (deps expression_parser.messages expression_parser.mly)
 (action  (with-stdout-to %{targets} (run menhir --compile-errors %{deps}))))

(menhir 
  (modules expression_parser)
  (flags --table)
)

(ocamllex expression_lexer)