-
Notifications
You must be signed in to change notification settings - Fork 0
/
huginn.asd
54 lines (52 loc) · 2.44 KB
/
huginn.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
(cl:in-package #:cl-user)
(asdf:defsystem huginn
:name "huginn"
:version "0.0.0"
:author "Marek Kochanowicz"
:depends-on (:iterate :alexandria :prove :prove-asdf
:flexichain :serapeum :cl-data-structures
:more-conditions)
:serial T
:pathname "src"
:defsystem-depends-on (:prove-asdf)
:components ((:file "aux-package")
(:module "machine"
:components ((:module "representation"
:components ((:file "package")
(:file "conditions")
(:file "tags")
(:file "types")
(:file "functions")))
(:module "database"
:components ((:file "package")
(:file "conditions")
(:file "protocol")
(:file "clause-range")
(:file "implementation")))
(:module "operations"
:components ((:file "package")
(:file "macros")
(:file "copying")
(:file "undo")
(:file "unification")
(:file "unfolding")
(:file "tail-call")))))
(:module "compiler"
:components ((:file "package")
(:file "utils")
(:file "types")
(:file "conditions")
(:file "protocol")
(:file "implementation")
(:test-file "tests")))
(:module "api"
:components ((:file "package")
(:file "conditions")
(:file "variables")
(:file "macros")
(:file "internal")
(:file "functions")))
(:module "tests"
:components ((:file "package")
(:test-file "trivial")
(:test-file "zebra")))))