-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdata-objects.asd
More file actions
42 lines (37 loc) · 1.42 KB
/
data-objects.asd
File metadata and controls
42 lines (37 loc) · 1.42 KB
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
(asdf:defsystem "data-objects"
:description "data-objects: a collection of widely useful data types"
:version "1.0"
:author "D.McClain <dbm@spectrodynamics.com>"
:license "Copyright (c) 2008 by SpectroDynamics, LLC. All rights reserved."
:components ((:file "packages")
;; (:file "data-objects")
(:file "reppy-channels")
#+:LISPWORKS (:file "progress-bar")
#+:LISPWORKS (:file "debug-stream")
#+:LISPWORKS (:file "topgui")
;;(:file "sets")
(:file "collector")
(:file "ord")
(:file "rb-trees")
(:file "typed-rb-trees")
(:file "typed-rb-tree-maps")
(:file "queues")
(:file "stacks")
;; (:file "single-reader-mailbox")
;; (:file "biqueue")
;; (:file "multiple-reader-mailbox")
;; (:file "protocols")
;; (:file "btree")
;; (:file "memory-btrees")
(:file "btree-clos")
(:file "memory-btrees-clos")
(:file "priority-queue")
(:file "rpsx")
;; #+:LISPWORKS6 (:file "lw6-stm")
(:file "simple-vstm")
)
:serial t
:depends-on ("useful-macros"
"mpcompat"
;; "stm"
))