-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhu.dwim.quasi-quote.asd
30 lines (29 loc) · 1.52 KB
/
hu.dwim.quasi-quote.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
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*-
;;;
;;; Copyright (c) 2009 by the authors.
;;;
;;; See LICENCE for details.
(defsystem :hu.dwim.quasi-quote
:defsystem-depends-on (:hu.dwim.asdf)
:class "hu.dwim.asdf:hu.dwim.system"
:description "Quasi quoted domain specific languages and transformations."
:depends-on (:babel
:babel-streams
:hu.dwim.common
:hu.dwim.defclass-star+hu.dwim.def
:hu.dwim.syntax-sugar
:hu.dwim.syntax-sugar/lambda-with-bang-args
:hu.dwim.util
:hu.dwim.walker)
:components ((:module "source"
:components ((:file "package")
(:file "duplicates" :depends-on ("package"))
(:module "generic"
:depends-on ("duplicates")
:components ((:file "util")
(:file "syntax" :depends-on ("util"))
(:file "transformation" :depends-on ("util" "syntax"))
(:file "list" :depends-on ("syntax" "transformation" "util"))
(:file "bivalent" :depends-on ("transformation" "syntax" "string" "binary" "util"))
(:file "binary" :depends-on ("transformation" "syntax" "util"))
(:file "string" :depends-on ("transformation" "syntax" "binary" "util"))))))))