-
Notifications
You must be signed in to change notification settings - Fork 15
/
lisp-chat.asd
35 lines (31 loc) · 983 Bytes
/
lisp-chat.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
;; Common Lisp Script
;; Manoel Vilela
(asdf/defsystem:defsystem :lisp-chat/server
:author "Manoel Vilela"
:description "An experimental chat irc-like: server"
:version "0.2.0"
:mailto "[email protected]"
:license "MIT"
:depends-on ("usocket"
"bordeaux-threads")
:pathname "src"
:components ((:file "config")
(:file "server" :depends-on ("config"))))
(asdf/defsystem:defsystem :lisp-chat/client
:author "Manoel Vilela"
:description "An experimental chat irc-like: client"
:version "0.2.0"
:license "MIT"
:depends-on ("usocket"
"cl-readline"
"bordeaux-threads")
:pathname "src"
:components ((:file "config")
(:file "client" :depends-on ("config"))))
(asdf/defsystem:defsystem :lisp-chat
:author "Manoel Vilela"
:description "An experimental chat irc-like"
:version "0.2.0"
:license "MIT"
:depends-on ("lisp-chat/client"
"lisp-chat/server"))