blob: ff57f4dc4e8b88a8286d0694d68c8a6cd7a1da12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;;; argot.asd
(asdf:defsystem #:argot
:description "Describe argot here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:version "0.0.1"
:serial t
:depends-on (#:trivia #:alexandria)
:components ((:file "package")
(:file "grammars")
(:file "docgen")
(:file "argot")))
|