Changed str back to stringify (conflict w/CL-WHO)
[parenscript.git] / parenscript.asd
blob7a5131a8bcf989c3b3ff431716456692f592adbb
1 ;;;; -*- lisp -*-
3 (defsystem :parenscript
4   :name "parenscript"
5   :author "Manuel Odendahl <manuel@bl0rg.net>"
6   :maintainer "Vladimir Sedach <vsedach@gmail.com>"
7   :licence "BSD"
8   :components
9   ((:static-file "parenscript.asd")
10    (:module :src
11             :serial t
12             :components ((:file "package")
13                          (:file "utils")
14                          (:file "namespace")
15                          (:file "parse-lambda-list")
16                          (:file "compiler")
17                          (:file "printer")
18                          (:file "compilation-interface")
19                          (:file "special-forms")
20                          (:file "macros")
21                          (:file "deprecated-interface")
22                          (:file "js-dom-symbol-exports")
23                          (:module :lib
24                                   :components ((:file "ps-html")
25                                                (:file "ps-loop")
26                                                (:file "ps-dom"))
27                                   :depends-on ("compilation-interface"))))
28    (:module :runtime
29             :components ((:file "ps-runtime-lib"))
30             :depends-on (:src)))
31   :depends-on (:cl-ppcre :anaphora))