2011-07-13 07:50:34 +00:00
|
|
|
;;;; flight-sim.asd
|
|
|
|
|
|
|
|
(asdf:defsystem #:flight-sim
|
|
|
|
:serial t
|
|
|
|
:depends-on (#:cl-opengl
|
|
|
|
#:cl-glu
|
|
|
|
#:lispbuilder-sdl)
|
|
|
|
:components ((:file "package")
|
2011-07-27 15:43:17 +00:00
|
|
|
(:file "util")
|
|
|
|
(:file "math")
|
2011-07-30 20:09:37 +00:00
|
|
|
(:file "graphics")
|
2011-07-27 15:43:17 +00:00
|
|
|
(:file "model")
|
2011-08-03 02:13:28 +00:00
|
|
|
(:file "physics")
|
2011-07-30 20:09:37 +00:00
|
|
|
(:file "objects")
|
2011-08-04 06:13:25 +00:00
|
|
|
(:file "engine")
|
2011-07-24 20:53:35 +00:00
|
|
|
(:file "flight-sim")))
|
2011-07-13 07:50:34 +00:00
|
|
|
|