forked from djeis97/shadow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shadow.asd
34 lines (34 loc) · 1.05 KB
/
shadow.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(asdf:defsystem #:shadow
:description "A lightweight system to help with defining and managing OpenGL shader programs."
:author "Michael Fiano <mail@michaelfiano.com>"
:maintainer "Michael Fiano <mail@michaelfiano.com>"
:license "MIT"
:homepage "https://www.michaelfiano.com/projects/shadow"
:source-control (:git "git@github.com:mfiano/shadow.git")
:bug-tracker "https://github.com/mfiano/shadow/issues"
:version "1.0.0"
:encoding :utf-8
:long-description #.(uiop:read-file-string (uiop/pathname:subpathname *load-pathname* "README.md"))
:depends-on (#:static-vectors
#:defpackage-plus
#:glsl-packing
#:varjo
#:cl-opengl
#:golden-utils
#:game-math)
:pathname "src"
:serial t
:components
((:file "package")
(:file "shadow")
(:file "common")
(:file "functions")
(:file "stages")
(:file "program")
(:file "packing")
(:file "attributes")
(:file "uniforms")
(:file "layout")
(:file "blocks")
(:file "buffers")
(:file "vari")))