aboutsummaryrefslogtreecommitdiff
path: root/topbin/dune
blob: 52f472d149643c0ffc609eae415a46dfaa791f13 (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
(install
 (section bin)
 (package coq)
 (files (coqtop_bin.exe as coqtop)))

(executable
 (name coqtop_bin)
 (public_name coqtop.opt)
 (package coq)
 (modules coqtop_bin)
 (libraries coq.toplevel)
 (link_flags -linkall))

(executable
 (name coqtop_byte_bin)
 (public_name coqtop.byte)
 (package coq)
 (modules coqtop_byte_bin)
 (libraries compiler-libs.toplevel coq.toplevel)
 (modes byte)
 (link_flags -linkall))

; Workers
(executables
 (names coqqueryworker_bin coqtacticworker_bin coqproofworker_bin)
 (public_names coqqueryworker.opt coqtacticworker.opt coqproofworker.opt)
 (package coq)
 (modules :standard \ coqtop_byte_bin coqtop_bin)
 (libraries coq.toplevel)
 (link_flags -linkall))