summaryrefslogtreecommitdiff
path: root/def.asd
blob: 9c997ce1d189b366a831fa54f3569558909c0f49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;;; def.asd

(asdf:defsystem #:def
  :description "Idomatic def* forms."
  :author "colin <colin@cicadas.surf>"
  :license  "Unlicense"
  :version "0.0.1"
  :depends-on (#:alexandria)
  :serial t
  :components ((:file "package")
               (:file "util")
               (:file "def")))

(asdf:defsystem #:def/generic
  :description "Alternate generic function implementation"
  :author "colin <colin@cicadas.surf>"
  :license "Unlicense"
  :version "0.0.1"
  :depends-on (#:def #:alexandria)
  :serial t
  :components ((:file "generic")))