-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-myriam.asd
45 lines (44 loc) · 1.11 KB
/
cl-myriam.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
(in-package :cl-user)
(asdf:defsystem cl-myriam
:description "Simple actor model implementation for local and remote actors"
:licence "3-clause BSD"
:version "0.1.3"
:author "Ariela Wenner"
:depends-on (:babel
:bordeaux-threads
:cl-conspack
:cl-ppcre
:lparallel
:pzmq
:serapeum
:str
:uuid
:usocket
:sha3)
:encoding :utf-8
:serial t
:components
((:file "package")
(:module "src"
:components
((:file "utils")
(:file "conditions")
(:file "address")
(:file "identity")
(:file "context")
(:file "authentication")
(:file "messaging")
(:file "action")
(:file "actors"))))
:in-order-to ((asdf:test-op (asdf:test-op :cl-myriam/test))))
(asdf:defsystem cl-myriam/test
:description "Tests for cl-myriam"
:depends-on (:cl-myriam
:fiveam)
:encoding :utf-8
:serial t
:components
((:module "tests"
:components
((:file "run"))))
:perform (asdf:test-op (o c) (uiop:symbol-call :5am :run! :myriam)))