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.
16 lines
481 B
16 lines
481 B
;;;; 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) |
|
:components ((:module "src" |
|
:serial t |
|
:components ((:file "package") |
|
(:file "observable") |
|
(:file "renderer") |
|
(:file "window") |
|
(:file "business-tycoon")))))
|
|
|