aboutsummaryrefslogtreecommitdiff
path: root/ide/dune
blob: 6931a747ac7e904dcca1215ba7275475b4bfb003 (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
(ocamllex utf8_convert config_lexer coq_lex)

(library
 (name core)
 (public_name coqide.core)
 (wrapped false)
 (modules (:standard \ idetop coqide_main))
 (libraries threads str lablgtk2.sourceview2 coq.lib coqide.protocol))

(rule
 (targets coqide_main.ml)
 (deps (:ml4-file coqide_main.ml4))
 (action (run coqmlp5 -loc loc -impl %{ml4-file} -o %{targets})))

(executable
 (name coqide_main)
 (public_name coqide)
 (package coqide)
 (modules coqide_main)
 (libraries coqide.core))

(executable
 (name idetop)
 (public_name coqidetop.opt)
 (package coqide)
 (modules idetop)
 (libraries coq.toplevel coqide.protocol)
 (link_flags -linkall))