repo.or.cz
/
lambdamundo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding random dalek generation
[lambdamundo.git]
/
lambdamundo.asd
blob
48dd58fd1ca44a8f79955386eb03b2940bb6ff09
1
2
;;;; lambdamundo.asd
3
(in-package :asdf)
4
5
(defsystem :lambdamundo
6
:depends-on (:iterate
7
:alexandria
8
:trivial-garbage
9
:flexichain
10
:swank
11
:cffi
12
:cl-glfw
13
:cl-glfw-glu
14
:cl-glfw-opengl
15
:cl-glfw-opengl-version_1_1
16
:cl-glfw-opengl-version_1_2
17
:cl-tuples
18
:mixamesh
19
:lodematron
20
:glrepl)
21
:serial t
22
:components ((:file "package")
23
(:file "utils")
24
(:file "keyboard")
25
(:file "keymaps")
26
(:file "mouse")
27
(:file "window")
28
(:file "repl")
29
(:file "actor")
30
(:file "turtle")
31
(:file "camera")
32
(:file "drawing")
33
(:file "npc")
34
(:file "main")))
35