;;;; 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 "global") (:file "serialization") (:file "actor") (:file "component") (:file "actor-macros") (:file "scene") (:file "render/drawable") (:file "render/view") (:file "main")) )))