-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhm.asd
42 lines (37 loc) · 1.26 KB
/
hm.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
;;;; hm.asd
(asdf:defsystem #:hm
:name "hm"
:serial t
:description "Write dot files for archaeological sequence diagrams
and chronological models"
:author "Thomas S. Dye <[email protected]>"
:maintainer "Thomas S. Dye <[email protected]>"
:homepage "http://tsdye.github.io/harris-matrix/"
:version "0.3"
:license "GPL V3"
:depends-on (#:graph
#:graph/matrix
#:graph/dot
#:cl-csv
#:fset
#:py-configparser
#:cl-colors
#:fare-memoization
#:inferior-shell
#:unix-opts)
:components ((:static-file "COPYING")
(:file "src/package")
(:file "src/macros/hm-macros")
(:file "src/config/hm-cfg")
(:file "src/chronology/hm-chronology")
(:file "src/color/hm-color")
(:file "src/files/hm-file")
(:file "src/elements/hm-elements")
(:file "src/data-structures/hm-data-structures")
(:file "src/memo/hm-memo")
(:file "src/fas/hm-fas")
(:file "src/cli/hm-cli")
(:file "src/hm"))
:build-operation "program-op" ;; leave as is
:build-pathname "./builds/hm"
:entry-point "hm:hm-main")