-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexapunks.asd
40 lines (38 loc) · 1.13 KB
/
exapunks.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
#|
This file is a part of exapunks project.
Copyright (c) 2018 herbert.j.gamer (herbert.j.gamer@gmail.com)
|#
#|
Authorherbert.j.gamer: (herbert.j.gamer@gmail.com)
|#
(defsystem "exapunks"
:version "0.1.0"
:author "herbert.j.gamer"
:license "MIT"
:depends-on ("let-plus"
"cl-ppcre"
"alexandria"
"cl-algebraic-data-type"
"trivial-clipboard"
"str")
:components ((:module "src"
:components
((:file "package")
(:file "types")
(:file "exapunks")
(:file "branching")
(:file "communication")
(:file "file")
(:file "lifecycle")
(:file "macros")
(:file "movement")
(:file "testing")
(:file "value-manipulation")
(:file "misc")
(:file "loops")
(:file "clipboard"))))
:description ""
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.org"))
:in-order-to ((test-op (test-op "exapunks-test"))))