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 "Your Name <your.name@example.com>"
|
|
|
|
:license "Specify license here"
|
|
|
|
:version "0.0.1"
|
|
|
|
:serial t
|
|
|
|
:depends-on (#:cl-glfw3 #:cl-opengl #:trivial-main-thread #:cffi #:png-read)
|
|
|
|
:components ((:module "src"
|
|
|
|
:serial t
|
|
|
|
:components ((:file "package")
|
|
|
|
(:file "shader")
|
|
|
|
(:file "observable")
|
|
|
|
(:file "renderer")
|
|
|
|
(:file "window")
|
|
|
|
(:file "business-tycoon")))))
|