-
Notifications
You must be signed in to change notification settings - Fork 6
/
xe2.asd
executable file
·37 lines (31 loc) · 896 Bytes
/
xe2.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
31
32
33
34
35
36
37
;;; -*- Mode: Lisp; -*-
;; ASDF Manual: http://constantly.at/lisp/asdf/
(defpackage :xe2-asd)
(in-package :xe2-asd)
(asdf:defsystem xe2
:name "xe2"
:version "1.9"
:maintainer "David O'Toole"
:author "David O'Toole"
:license "General Public License (GPL) Version 3"
:description "An object-oriented graphical 2D game engine."
:serial t
:depends-on (:trivial-features :trivial-features-tests
:lispbuilder-sdl :lispbuilder-sdl-image
:lispbuilder-sdl-gfx
:lispbuilder-sdl-mixer
:clon)
:components ((:file "xe2")
(:file "math")
(:file "rgb")
(:file "console")
(:file "widgets")
(:file "viewport")
(:file "cells")
(:file "narration")
(:file "browser")
(:file "grammars")
(:file "worlds")
(:file "path")
(:file "util")
(:file "forms")))