-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.websocket.asd
52 lines (50 loc) · 1.74 KB
/
wt.websocket.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
;;;; -*- Mode: LISP -*-
(defsystem wt.websocket
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.http
:wt.uri
:wt.utility
:alexandria
:ironclad
:bordeaux-threads
:cl-cont
:closer-mop
:usocket
:cl-base64
:trivial-garbage)
:defsystem-depends-on (:wt.vendor)
:components ((:module "websocket"
:serial t
:components ((:file "package")
(:file "utility")
(:file "handler")
(:file "session")
(:file "endpoint")
(:file "frame")
(:file "connection")
(:file "protocol")
(:file "client"))))
:in-order-to ((test-op (test-op :wt.websocket/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :websocket hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.websocket/test
:depends-on (:wt.websocket
:wt.json
:wt.test
:wt.utility
:cl-ppcre
:split-sequence
:cl-fad)
:components ((:module "test/websocket"
:serial t
:components ((:file "package")
(:file "helper")
(:file "autobahn")
(:file "endpoint")
(:file "session")
(:file "websocket"))))
:perform (test-op (o c)
(symbol-call :test :run! :websocket-test)))