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-20 06:02:19 +00:00
|
|
|
(:file "flight-sim")
|
|
|
|
(:file "physics")))
|
2011-07-13 07:50:34 +00:00
|
|
|
|