aboutsummaryrefslogtreecommitdiff
path: root/discocaml/dune
blob: bd96d640dd19045f900d72b78546e87d1c309d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(library
 (name discocaml)
 (inline_tests)
 (libraries compiler-libs.common yojson)
 (modules arraylist ast discocaml draw_tree eval)
 (package discocaml)
 (preprocess
  (pps ppx_deriving.show ppx_deriving_yojson ppx_expect)))

(env
 (release
  (link_flags
   (:standard -cclib -static -cclib -lm -O3))))

(executable
 (libraries discocaml yojson)
 (modules main)
 (name main)
 (package discocaml)
 (public_name discocaml))