-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpetri.asd
54 lines (49 loc) · 1.54 KB
/
petri.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
;;;; petri.asd
(asdf:defsystem #:petri
:description "An implementation of Petri nets"
:author "Michał \"phoe\" Herda <phoe@disroot.org>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:alexandria
#:closer-mop
#:1am
#:split-sequence
#:phoe-toolbox/bag)
:components ((:file "petri")))
(asdf:defsystem #:petri/threaded
:description "An implementation of Petri nets - multithreaded version"
:author "Michał \"phoe\" Herda <phoe@disroot.org>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:petri
#:bordeaux-threads
#:lparallel
#:trivial-backtrace)
:components ((:file "threaded")))
(asdf:defsystem #:petri/graph
:description "An implementation of Petri nets - CL-DOT integration"
:author "Michał \"phoe\" Herda <phoe@disroot.org>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:petri
#:cl-dot)
:components ((:file "graph")))
(asdf:defsystem #:petri/test
:description "Tests for PETRI-NET"
:author "Michał \"phoe\" Herda <phoe@disroot.org>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (#:alexandria
#:1am
#:petri
#:petri/threaded)
:components ((:file "test")))
(defmethod asdf:perform ((o asdf:test-op)
(c (eql (asdf:find-system ':petri))))
(asdf:load-system :petri/test)
(uiop:symbol-call :1am :run
(symbol-value (find-symbol "*PETRI-TESTS*" :petri/test))))