-
Notifications
You must be signed in to change notification settings - Fork 4
/
cl-flow.asd
34 lines (32 loc) · 1004 Bytes
/
cl-flow.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
(asdf:defsystem cl-flow
:description "Data-flow driven concurrency model for Common Lisp"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (alexandria cl-muth)
:serial t
:pathname "src/"
:components ((:file "packages")
(:file "utils")
(:file "context")
(:file "flow")
(:file "atomically")
(:file "serially")
(:file "concurrently")
(:file "dynamically")
(:file "asynchronously")
(:file "repeatedly")
(:file "run")))
(asdf:defsystem cl-flow/tests
:description "Test suite for cl-flow"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (alexandria cl-flow fiveam cl-muth simple-flow-dispatcher)
:pathname "t/"
:serial t
:components ((:file "packages")
(:file "pooled-dispatcher")
(:file "suite")))