9f2e2d12f4605105f05e94ac6c0949564ac169b9
[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                                  #:trivial-garbage)
17   :components ((:file "package")
18                (:file "macros")
19                (:file "constants")
20                (:file "xy-coordinates")
21                (:file "collision")
22                (:file "files")
23                (:file "leveleditor")
24                (:file "animation")
25                (:file "functions")
26                (:file "game-object")
27                (:file "game-object-with-animation")
28                (:file "elementary-classes")
29                (:file "small-classes")
30                (:file "player")
31                (:file "simple-enemy")
32                (:file "flying-nasobem")
33                (:file "burning-marshmallow")
34                (:file "on-collision")
35                (:file "room")
36                (:file "objectarray")
37                (:file "add-object")
38                (:file "draw")
39                (:file "game")
40                (:file "testing-room")
41                )
42   :serial t)