forked from vydd/sketch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sketch.asd
47 lines (46 loc) · 1.48 KB
/
sketch.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
35
36
37
38
39
40
41
42
43
44
45
46
47
;;;; sketch.asd
(asdf:defsystem #:sketch
:description "Sketch is a Common Lisp framework for the creation of electronic art, computer graphics, visual design, game making and more. It is inspired by Processing and OpenFrameworks."
:author "Danilo Vidovic (vydd)"
:license "MIT"
:depends-on (#:alexandria
#:closer-mop
#:glkit
#:glu-tessellate
#:mathkit
#:md5
#:noisy
#:sdl2
#:cl-plus-c
#:sdl2-image
#:sdl2-ttf
#:sdl2kit
#:split-sequence
#:static-vectors
#:trivial-garbage
#:zpng)
:pathname "src"
:serial t
:components ((:file "package")
(:file "math")
(:file "utils")
(:file "environment")
(:file "resources")
(:file "color")
(:file "channels")
(:file "shaders")
(:file "pen")
(:file "font")
(:file "geometry")
(:file "image")
(:file "shapes")
(:file "transforms")
(:file "complex-transforms")
(:file "drawing")
(:file "bindings")
(:file "sketch")
(:file "entities")
(:file "figures")
(:file "controllers")
(:file "canvas")
(:file "noise")))