-
Notifications
You must be signed in to change notification settings - Fork 6
/
qooxlisp.asd
28 lines (26 loc) · 935 Bytes
/
qooxlisp.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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
#+(or allegro lispworks cmu mcl clisp cormanlisp sbcl scl)
(progn
(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))))
(asdf:defsystem :qooxlisp
:name "qooxlisp"
:author "Kenny Tilton <[email protected]>"
:maintainer "Kenny Tilton <[email protected]>"
:licence "MIT"
:description "qooxlisp"
:long-description "qooxlisp: qooxdoo and Common Lisp, with Cells Inside(tm)"
:version "1.0"
:serial t
:depends-on (:utils-kt :cells :cl-json)
:components ((:file "package")
(:file "qx-utils")
(:file "qooxlisp")
(:file "session")
(:file "widget")
(:file "basic")
(:file "layout")
(:file "table")
(:file "focus")
(:file "control")
(:file "group-box")
(:file "radio")))