cvs import
[celtk.git] / Celtk.asd
blob2dc61a150d9157aa0c96b85982f24791b0e8b9fa
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
3 #+(or allegro lispworks cmu mcl clisp cormanlisp sbcl scl)
4 (progn
5   (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))))
7 (asdf:defsystem :celtk
8     :name "celtk"
9   :author "Kenny Tilton <kentilton@gmail.com>"
10   :version "2.0"
11   :maintainer "Kenny Tilton <kentilton@gmail.com>"
12   :licence "Lisp LGPL"
13   :description "Tcl/Tk with Cells Inside(tm)"
14   :long-description "A Cells-driven portable GUI, ultimately implmented by Tcl/Tk"
15   :depends-on (:cells :cffi :gui-geometry)
16   :serial t
17   :components ((:file "Celtk")
18                (:file "tk-structs")
19                (:file "tk-interp")
20                (:file "tk-events")
21                (:file "tk-object")
22                (:file "widget")
23                (:file "layout")
24                (:file "font")
25                (:file "timer")
26                (:file "menu")
27                (:file "label")
28                (:file "entry")
29                (:file "button")
30                (:file "multichoice")
31                (:file "scroll")
32                (:file "canvas")
33                (:file "text-item")
34                (:file "item-pictorial")
35                (:file "item-shaped")
36                (:file "composites")
37                (:file "frame")
38                (:file "fileevent")
39                (:file "togl")
40                (:file "run")
41                  (:file "ltktest-ci")
42                (:file "lotsa-widgets")
43                (:file "demos")))