-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyperlattices.asd
49 lines (45 loc) · 1.86 KB
/
hyperlattices.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
(in-package :cl-user)
(defpackage hyperlattices/asdf
(:nicknames hyperlattices/sys)
(:use cl asdf uiop))
(in-package :hyperlattices/asdf)
(defsystem hyperlattices
:description "Generalized Lattice algebraic datatypes, incl., LATTICE, HYPERLATTICE, PROBABILISTIC-LATTICE, and PROBABILISTIC-HYPERLATTICE."
:author "\"the Phoeron\" Colin J.E. Lupton"
:mailto "[email protected]"
:homepage "https://thephoeron.github.io/hyperlattices/"
:source-control (:git "https://github.com/thephoeron/hyperlattices.git")
:bug-tracker "https://github.com/thephoeron/hyperlattices/issues"
:license "MIT"
:version (:read-file-form "VERSION")
:depends-on (alexandria
serapeum
closer-mop
; baphomet
trivial-types)
:serial t
:components ((:file "generic-interface")
(:file "hash-table-utils")
(:file "poset")
(:file "generalized-lattice")
(:file "lattice")
(:file "probabilistic-lattice")
(:file "hyperlattice")
(:file "probabilistic-hyperlattice"))
:in-order-to ((test-op (test-op :hyperlattices/test))))
(defsystem hyperlattices/test
:description "PARACHUTE-powered test suite for the HYPERLATTICES library."
:author "\"the Phoeron\" Colin J.E. Lupton"
:mailto "[email protected]"
:homepage "https://thephoeron.github.io/hyperlattices/"
:source-control (:git "https://github.com/thephoeron/hyperlattices.git")
:bug-tracker "https://github.com/thephoeron/hyperlattices/issues"
:license "MIT"
:version (:read-file-form "VERSION")
:depends-on (hyperlattices
parachute)
:serial t
:components ((:module "test"
:serial t
:components ((:file "hyperlattice-tests"))))
:perform (test-op (op c) (uiop:symbol-call :parachute :test :hyperlattices/test)))