-
Notifications
You must be signed in to change notification settings - Fork 0
/
draw-something.asd
103 lines (96 loc) · 3.06 KB
/
draw-something.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
;; draw-something.asd - The main package for draw-something
;; Copyright (C) 2006, 2010, 2016, 2021 Rhea Myers.
;;
;; This file is part of draw-something.
;;
;; draw-something is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3 of the License, or
;; (at your option) any later version.
;;
;; draw-something is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(in-package :asdf-user)
(defsystem "draw-something"
:description "draw-something: a drawing generation system."
:version "2023.1"
:author "Rhea Myers"
:licence "GNU General Public License v3.0 or later"
:depends-on (#:mt19937)
:pathname "src"
:serial t
:components
((:file "package")
(:file "utilities")
(:file "log")
(:file "random")
(:file "geometry")
(:file "point")
(:file "line")
(:file "rectangle")
(:file "polyline")
(:file "colour")
(:file "turtle")
(:file "pen")
(:file "form")
(:file "figure")
(:file "plane")
(:file "drawing")
(:file "composition")
(:file "colouring")
;;(:file "postscript")
(:file "svg")
(:file "draw-something"))
;;:in-order-to ((test-op (test-op draw-something/test)))
)
(defsystem "draw-something/gui-base"
:description "Base package for a GUI for developing draw-something."
:version "2023.1"
:author "Rhea Myers"
:licence "GNU General Public License v3.0 or later"
:depends-on (#:draw-something)
:pathname "src"
:serial t
:components ((:file "gui-base")))
(defsystem "draw-something/gui-cl-vectors"
:description "Rasterization for a GUI for developing draw-something."
:version "2023.1"
:author "Rhea Myers"
:licence "GNU General Public License v3.0 or later"
:depends-on (#:draw-something/gui-base
#:cl-aa
#:cl-aa-misc
#:cl-vectors)
:pathname "src"
:serial t
:components ((:file "gui-cl-vectors")))
(defsystem "draw-something/gui-ltk"
:description "An ltk GUI for developing draw-something."
:version "2023.1"
:author "Rhea Myers"
:licence "GNU General Public License v3.0 or later"
:depends-on (#:draw-something
#:draw-something/gui-base
#:ltk)
:pathname "src"
:serial t
:components ((:file "gui-ltk")))
(defsystem "draw-something/gui-glut"
:description "A GLUT GUI for developing draw-something."
:version "2023.1"
:author "Rhea Myers"
:licence "GNU General Public License v3.0 or later"
:depends-on (#:draw-something
#:draw-something/gui-base
#:draw-something/gui-cl-vectors
#:cl-opengl
#:cl-glut
#:trivial-main-thread)
:pathname "src"
:serial t
:components ((:file "gui-glut")))