dropped the explicit dependency of trivial-garbage
[uxul-world.git] / uxul-world.asd
1 ;;; -*- lisp -*-
2
3 ;;; Copyright 2009 Christoph Senjak
4
5 (defsystem "uxul-world"
6   :description "Uxul World - A simple Jump'N'Run"
7   :version "No Release Yet"
8   :author "Christoph Senjak <firstName.secondName at googlemail.com>"
9   :license "Copyright 2009 Christoph Senjak."
10   :depends-on (#:lispbuilder-sdl #:closer-mop
11                                  #:cl-fad
12                                  ;#:asdf
13                                  #:ltk
14                                  #:lisp-magick
15                                  #:lispbuilder-sdl-image)
16   :components ((:file "package")
17                (:file "macros")
18                (:file "constants")
19                (:file "xy-coordinates")
20                (:file "collision")
21                (:file "files")
22                (:file "leveleditor")
23                (:file "animation")
24                (:file "functions")
25                (:file "game-object")
26                (:file "game-object-with-animation")
27                (:file "elementary-classes")
28                (:file "small-classes")
29                (:file "player")
30                (:file "simple-enemy")
31                (:file "flying-nasobem")
32                (:file "burning-marshmallow")
33                (:file "on-collision")
34                (:file "room")
35                (:file "objectarray")
36                (:file "add-object")
37                (:file "draw")
38                (:file "game")
39                (:file "testing-room")
40                )
41   :serial t)