Pariatech's Business Tycoon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
;;;; business-tycoon.asd
|
|
|
|
|
|
|
|
(asdf:defsystem #:business-tycoon
|
|
|
|
:description "Describe business-tycoon here"
|
|
|
|
:author "Gabriel Pariat <gabriel@pariatech.com>"
|
|
|
|
:license "AGPLv3"
|
|
|
|
:version "0.0.1"
|
|
|
|
:serial t
|
|
|
|
:depends-on (#:cl-glfw3
|
|
|
|
#:cl-opengl
|
|
|
|
#:trivial-main-thread
|
|
|
|
#:cffi
|
|
|
|
#:png-read
|
|
|
|
#:mathkit
|
|
|
|
#:sb-cga)
|
|
|
|
:components ((:module "src"
|
|
|
|
:serial t
|
|
|
|
:components ((:file "package")
|
|
|
|
(:file "camera")
|
|
|
|
(:file "shader")
|
|
|
|
(:file "texture")
|
|
|
|
(:file "renderer")
|
|
|
|
(:file "window")
|
|
|
|
(:file "business-tycoon")))))
|