aboutsummaryrefslogtreecommitdiff
path: root/discocaml/dune
blob: 83bf5ed17dc27f1809b9392b253814757b6fbce9 (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 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))