-
Notifications
You must be signed in to change notification settings - Fork 1
/
aether.asd
41 lines (40 loc) · 1.6 KB
/
aether.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
;;;; aether.asd
;;;;
;;;; Author: Eric Peterson, Peter Karalekas
(asdf:defsystem #:aether
:description "A DSL for emulating an actor-based distributed system, housed on a family of emulated devices."
:author "Eric Peterson <[email protected]>, Peter Karalekas <[email protected]>"
:version (:read-file-form "VERSION.txt")
:license "MIT (See LICENSE.md)"
:pathname "src/"
:depends-on (#:alexandria
#:policy-cond ; used in DESTRUCTURING-PLACES
#:cl-heap ; simulation is founded on cl-heap:priority-queue
#:global-vars ; store DPU code
)
:in-order-to ((asdf:test-op (asdf:test-op #:aether-tests)))
:around-compile (lambda (compile)
(let (#+sbcl(sb-ext:*derive-function-types* t))
(funcall compile)))
:serial t
:components ((:file "package")
(:file "utilities")
(:file "queue")
(:file "cheap-heap")
(:module "debug"
:serial t
:components ((:file "logger")
(:file "trace")))
(:file "event")
(:file "message")
(:file "courier")
(:file "network")
(:module "process"
:serial t
:components ((:file "process")
(:file "dpu-helpers")
(:file "dereference")
(:file "emissary")))
(:file "rpc")
(:file "lock")
(:file "cast")))