wh-engine/wh-engine.asd

21 lines
639 B
Common Lisp

;;;; wh-engine system definition
;;;; Copyleft (C) 2021 ~keith
(defsystem "wh-engine"
:version "0.1.0"
:description "A game engine written in Common Lisp."
:author "~keith"
:license "GNU AGPLv3"
:depends-on ("sdl2" "cl-opengl" "trivial-types" "objective-lisp" "3d-vectors" "3d-matrices")
:components
((:module "wh-engine"
:components ((:file "package")
(:file "main")
(:file "serialization")
(:file "actor")
(:file "component")
(:file "scene")
(:file "render/drawable")
(:file "render/view"))
)))