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

(asdf:defsystem #:def
  :description "Idiomatic def forms."
  :author "colin <colin@cicadas.surf>"
  :license  "Unlicense"
  :version "0.0.1"
  :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")))