-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclover-build.asd
71 lines (69 loc) · 2.19 KB
/
clover-build.asd
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
#|
This file is a part of clover project.
Copyright (c) 2018 moratori
|#
#|
Author: moratori
|#
(defsystem "clover-build"
:version "2.6.1"
:author "moratori"
:license "LLGPL"
:depends-on (:cl-cpus
:cl-heap
:lparallel
:yacc
:lexer ;https://github.com/massung/lexer.git
:generators
:alexandria
:cl-ppcre
:cl-custom-hash-table
)
:components ((:module "src"
:around-compile
(lambda (thunk)
#+sbcl(declaim (sb-ext:muffle-conditions cl:warning))
(declaim (optimize
(debug 0)
(safety 0)
(speed 3)
(space 0)
(compilation-speed 0)))
(funcall thunk))
:components
((:module "search"
:components
((:file "common")
(:file "iddfs")
(:file "extractor")
(:file "astar")
(:file "dfs")))
(:file "property")
(:file "conditions")
(:file "types")
(:file "util")
(:file "substitute")
(:file "converter")
(:file "parser")
(:file "unify")
(:file "rename")
(:file "termorder")
(:file "simplify")
(:file "resolution")
(:file "rewrite")
(:file "criticalpair")
(:file "completion")
(:file "multiprocess")
(:file "multicompletion")
(:file "clover")
(:file "rendertree")
(:module "ui"
:components
((:file "util")
(:file "batch")
(:file "repl")
(:file "main"))))))
:description "Simple Automated Theorem Prover"
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.md")))