-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweaver.asd
51 lines (48 loc) · 1.42 KB
/
weaver.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
#|
This file is a part of weaver project.
Copyright (c) 2018 Nisen ([email protected])
|#
#|
Author: Nisen ([email protected])
|#
(in-package :cl-user)
(defpackage weaver-asd
(:use :cl :asdf))
(in-package :weaver-asd)
(defsystem weaver
:version "0.1"
:author "Nisen"
:license ""
:depends-on (:cl-ppcre
:usocket
:bordeaux-threads
:chunga
:flexi-streams
:alexandria
:yason
:cl-json
:log4cl
:salza2)
:components ((:module "src"
:serial t
:components
((:file "packages")
(:file "utils")
(:file "request")
(:file "response")
(:file "router")
(:file "weaver"))))
:description ""
: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 weaver-test))))