-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-rx.asd
66 lines (62 loc) · 2.7 KB
/
cl-rx.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
55
56
57
58
59
60
61
62
63
64
65
66
#|
This file is a part of cl-rx project.
Copyright (c) 2016 Yoandy Rodriguez Martinez
|#
#|
Reactive extensions for Common-Lisp
Author: Yoandy Rodriguez Martinez
|#
(in-package :cl-user)
(defpackage cl-rx-asd
(:use :cl :asdf))
(in-package :cl-rx-asd)
(defsystem cl-rx
:version "0.1"
:author "Yoandy Rodriguez Martinez"
:license "MIT"
:depends-on ( :alexandria :bordeaux-threads :trivial-gray-streams)
:serial t
:components ((:module "src"
:serial t
:components
((:module "util"
:serial t
:components((:file "package")
(:file "macros")
(:file "queue")
(:file "pool")))
(:module "scheduler"
:serial t
:components((:file "package")
(:file "base")
(:file "immediate")
(:file "trampoline")
(:file "new-thread")))
(:module "subscriber"
:serial t
:components ((:file "package")
(:file "subscriber")
(:file "subscription")))
(:module "observable"
:serial t
:components((:file "package")
(:file "observable")
(:file "operators")
(:file "creation")
(:file "conditionals")
(:file "transform")))
(:file "package"))))
:description "Reactive extensions for Common-Lisp"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op cl-rx-test))))