-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzoned.asd
35 lines (33 loc) · 1.01 KB
/
zoned.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
;;;; zoned.asd - asdf system definitions for zoned and subsystems.
(asdf:defsystem #:zoned
:name "zoned"
:description "Tile-based 2D video game map editor"
:author "modula t."
:license "MIT"
:version "0.1"
:homepage "https://github.com/defaultxr/zoned"
:bug-tracker "https://github.com/defaultxr/zoned/issues"
:mailto "defaultxr at gmail dot com"
:source-control (:git "[email protected]:defaultxr/zoned.git")
:depends-on (#:zoned/zone
#:mcclim
#:mcclim-bitmaps)
:pathname "src/"
:serial t
:components ((:file "zoned-package")
(:file "zoned")))
(asdf:defsystem #:zoned/zone
:name "zoned/zone"
:description "Zoned zone classes and functionality without the GUI bits"
:author "modula t."
:license "MIT"
:version "0.1"
:depends-on (#:alexandria
#:mutility
#:mutility/loopy
#:str)
:pathname "src/"
:serial t
:components ((:file "zone-package")
(:file "utility")
(:file "zone")))