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 17
/
qtools.asd
48 lines (46 loc) · 1.57 KB
/
qtools.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
#|
This file is a part of Qtools
(c) 2014 Shirakumo http://tymoon.eu (shinmera@tymoon.eu)
Author: Nicolas Hafner <shinmera@tymoon.eu>
|#
(asdf:defsystem qtools
:version "1.2.0"
:license "zlib"
:author "Nicolas Hafner <shinmera@tymoon.eu>"
:maintainer "Nicolas Hafner <shinmera@tymoon.eu>"
:description "A collection of tools to aid in development with CommonQt."
:homepage "https://Shinmera.github.io/qtools/"
:bug-tracker "https://github.com/Shinmera/qtools/issues"
:source-control (:git "https://github.com/Shinmera/qtools.git")
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "class-map")
(:file "name-translation")
(:file "dispatch")
(:file "finalizable")
(:file "gc-finalized")
(:file "copying")
(:file "printing")
(:file "signal")
(:file "widget")
(:file "widget-defmethod")
(:file "widget-convenience")
(:file "widget-menu")
(:file "readtable")
(:file "generate")
(:file "dynamic")
(:file "precompile")
(:file "deploy")
(:file "fast-call")
(:file "documentation"))
:depends-on (:qt+libs
:deploy
:cl-ppcre
:closer-mop
:form-fiddle
:named-readtables
:trivial-indent
:trivial-garbage
:trivial-main-thread
:documentation-utils))