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
Compiled meshes work
[lambdamundo.git]
/
lambdamundo.asd
blob
c98906d04623e065bca5080dfc8372c9d31149f1
1
2
;;;; blockworld.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 "camera")
28
(:file "drawing")
29
(:file "window")
30
(:file "repl")
31
(:file "actor")
32
(:file "turtle")
33
(:file "npc")
34
(:file "main")))
35