-
Notifications
You must be signed in to change notification settings - Fork 0
/
thoughtbound.asd
30 lines (30 loc) · 933 Bytes
/
thoughtbound.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
(defsystem "thoughtbound"
:version "0.0.4"
:author "Andrew Kravchuk"
:license "MIT"
:depends-on (#:alexandria
#:cl-fast-ecs
#:cl-liballegro
#:cl-liballegro-nuklear
#:cl-tiled
#:livesupport
#+sbcl #:sb-posix)
:serial t
:components ((:module "src"
:components
((:file "package")
(:file "globals")
(:file "sprites")
(:file "map")
(:file "characters")
(:file "sounds")
(:file "ai")
(:file "ui")
(:file "stairs")
(:file "win")
(:file "main"))))
:description "A Spring Lisp Game Jam 2023 entry."
:defsystem-depends-on (#:deploy)
:build-operation "deploy-op"
:build-pathname #P"thoughtbound"
:entry-point "thoughtbound:main")