-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.melusina.atelier.asd
73 lines (67 loc) · 2.12 KB
/
org.melusina.atelier.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
;;;; org.melusina.atelier.asd — Lisp system for Atelier
;;;; Atelier (https://github.com/melusina-org/cl-atelier)
;;;; This file is part of Atelier.
;;;;
;;;; Copyright © 2017–2023 Michaël Le Barbier
;;;; All rights reserved.
;;;; This file must be used under the terms of the MIT License.
;;;; This source file is licensed as described in the file LICENSE, which
;;;; you should have received as part of this distribution. The terms
;;;; are also available at https://opensource.org/licenses/MIT
(asdf:defsystem #:org.melusina.atelier
:description "An atelier for Lisp developers"
:author "Michaël Le Barbier"
:depends-on (#:alexandria
#:cl-ppcre
#:org.melusina.rashell
#:osicat
#:trivia)
:components
((:module "src"
:components ((:file "package")
(:file "utilities")
(:file "configuration")
(:file "license")
(:file "parameter")
(:file "template")
(:file "lint")
(:module "inspector"
:components
((:file "codestyle-0001")
(:file "codestyle-0002")
(:file "codestyle-0003")
(:file "codestyle-0004")
(:file "codestyle-0005")
(:file "codestyle-0006")))
(:file "main")))))
(asdf:defsystem #:org.melusina.atelier/testsuite
:description "Testsuite for an atelier for Lisp developers"
:author "Michaël Le Barbier"
:depends-on (#:alexandria
#:org.melusina.atelier
#:org.melusina.confidence)
:components
((:module "testsuite"
:components ((:file "package")
(:file "utilities")
(:file "parameter")
(:file "template")
(:module "inspector"
:components
((:file "codestyle-0001")
(:file "codestyle-0002")
(:file "codestyle-0003")
(:file "codestyle-0004")
(:file "codestyle-0005")
(:file "codestyle-0006")))
(:file "lint")
(:file "entrypoint")))))
(asdf:defsystem #:org.melusina.atelier/development
:description "Development tools for Atelier"
:author "Michaël Le Barbier"
:license "MIT License"
:depends-on (#:org.melusina.atelier)
:components
((:module "libexec/lisp"
:components ((:file "development")))))
;;;; End of file `org.melusina.atelier.asd'