This repository has been archived by the owner on Apr 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlionchat.asd
51 lines (50 loc) · 1.61 KB
/
lionchat.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 lionchat
(c) 2016 Shirakumo http://tymoon.eu (shinmera@tymoon.eu)
Author: Nicolas Hafner <shinmera@tymoon.eu>
|#
(asdf:defsystem lionchat
:version "1.0.0"
:license "zlib"
:author "Nicolas Hafner <shinmera@tymoon.eu>"
:maintainer "Nicolas Hafner <shinmera@tymoon.eu>"
:description "A GUI client for the Lichat protocol"
:homepage "https://Shinmera.github.io/lionchat/"
:bug-tracker "https://github.com/Shinmera/lionchat/issues"
:source-control (:git "https://github.com/Shinmera/lionchat.git")
:build-operation "qt-program-op"
:build-pathname "lionchat"
:entry-point "lionchat:start"
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "settings")
(:file "updatable")
(:file "client")
(:file "user")
(:file "user-list")
(:file "channel")
(:file "channel-list")
(:file "commands")
(:file "chat-area")
(:file "repl")
(:file "tray")
(:file "main")
(:file "shortcut"))
:defsystem-depends-on (:qtools)
:depends-on (:lichat-tcp-client
:qtools
:qtcore
:qtgui
:qtsvg
:qtools-ui-listing
:qtools-ui-options
:qtools-ui-notification
:qtools-ui-repl
:alexandria
:bordeaux-threads
:documentation-utils
:verbose
:cl-ppcre
:ubiquitous
:trivial-arguments))