-
Notifications
You must be signed in to change notification settings - Fork 1
/
Moltap.cabal
104 lines (99 loc) · 2.88 KB
/
Moltap.cabal
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Moltap
version: 0.3
cabal-version: >= 1.2
build-type: Simple
license: GPL
license-file: LICENSE
maintainer: Twan van Laarhoven
author: Twan van Laarhoven
category: Theorem proving
synopsis: MOLTAP - A Modal Logic Tableau Prover
description:
MOLTAP - A Modal Logic Tableau Prover
extra-source-files:
tools/convert.pl
tools/format.pl
tools/prelude.tex
tools/proof.sty
doc-src/template.html
doc-src/style/style.css
doc-src/style/script.js
doc-src/style/jquery.js
doc-src/style/textarea-bg.png
doc-src/style/throbber.gif
doc-src/style/true.png
doc-src/style/circle-green.png
doc-src/style/circle-red.png
doc-src/style/error.png
doc-src/style/false.png
doc-src/style/header-bg.png
doc-src/style/input-bg.png
doc-src/index.txt
doc-src/prover.txt
doc-src/examples.txt
doc-src/syntax.txt
doc-src/users-guide.txt
doc-src/download.txt
src/Moltap/CGI/CGIMain.hs
src/Moltap/CGI/HTMLOutput.hs
Flag split-base
Flag include-cgi
Executable moltap-cgi
If !flag(include-cgi)
Buildable: False
If flag(split-base)
build-depends: base >= 3, containers, process
Else
build-depends: base < 3
If !os(windows)
build-depends: unix
ghc-options: -DUNIX
build-depends: mtl, parsec, cgi >= 3, utf8-string, filepath
main-is: Moltap/CGI/CGIMain.hs
hs-source-dirs: src
ghc-options: -Wall
extensions: CPP
other-modules:
Moltap.Util.Util
Moltap.Util.TreeZipper
Moltap.Util.Graphviz
Moltap.Util.SimpleJSON
Moltap.Base.Agents
Moltap.Base.Syntax
Moltap.Base.Parser
Moltap.Base.Proof
Moltap.Base.Model
Moltap.Base.ModelGraphviz
Moltap.Prover.SplitStateMonad
Moltap.Prover.TableauState
Moltap.Prover.Prover
Moltap.CGI.CGIMain
Moltap.CGI.HTMLOutput
Executable moltap
If flag(split-base)
build-depends: base >= 3, containers, process
Else
build-depends: base < 3
If !os(windows)
build-depends: unix
ghc-options: -DUNIX
build-depends: mtl, parsec, utf8-string, filepath
main-is: Moltap/CLI/CLIMain.hs
hs-source-dirs: src
ghc-options: -Wall
extensions: CPP
other-modules:
Moltap.Util.Util
Moltap.Util.TreeZipper
Moltap.Util.Graphviz
Moltap.Util.SimpleJSON
Moltap.Base.Agents
Moltap.Base.Syntax
Moltap.Base.Parser
Moltap.Base.Proof
Moltap.Base.Model
Moltap.Base.ModelGraphviz
Moltap.Prover.SplitStateMonad
Moltap.Prover.TableauState
Moltap.Prover.Prover
Moltap.CLI.CLIMain