blob: 4153d06161ebd29a0854a8df41f4ca78ed892d7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(library
(name micromega_plugin)
(public_name coq.plugins.micromega)
; be careful not to link the executable to the plugin!
(modules (:standard \ csdpcert g_zify zify))
(synopsis "Coq's micromega plugin")
(libraries num coq.plugins.ltac))
(executable
(name csdpcert)
(public_name csdpcert)
(package coq)
(modules csdpcert)
(flags :standard -open Micromega_plugin)
(libraries coq.plugins.micromega))
(library
(name zify_plugin)
(public_name coq.plugins.zify)
(modules g_zify zify)
(synopsis "Coq's zify plugin")
(libraries coq.plugins.ltac))
|