File size: 338 Bytes
43203b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | (in-package :cl-user)
(defpackage :cl-syntax-annot-asd
(:use :cl :asdf))
(in-package :cl-syntax-annot-asd)
(defsystem :cl-syntax-annot
:version "0.2"
:author "Tomohiro Matsuyama"
:license "LLGPL"
:description "CL-Syntax Reader Syntax for cl-annot"
:depends-on (:cl-syntax :cl-annot)
:components ((:file "contrib/annot")))
|