forked from m2ym/cl-annot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-annot.asd
31 lines (28 loc) · 1.18 KB
/
cl-annot.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
(in-package :cl-user)
(defpackage cl-annot-asd
(:use :cl :asdf))
(in-package cl-annot-asd)
(defsystem cl-annot
:version "0.1"
:author "Tomohiro Matsuyama"
:license "LLGPL"
:description "Python-like Annotation Syntax for Common Lisp"
:depends-on (:alexandria)
:components ((:module "src"
:serial t
:components ((:module "main"
:serial t
:components ((:file "utils")
(:file "core")
(:file "syntax")
(:file "package")
(:file "defs")
(:file "doc")))
;; (:module "lib"
;; :serial t
;; :components ((:file "std")
;; (:file "eval-when")
;; (:file "doc")
;; (:file "class")
;; (:file "slot")))
))))