-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnodgui.asd
161 lines (151 loc) · 5.36 KB
/
nodgui.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
;; This software is Copyright © cage
;; Portions Copyright (c) 2003-2010 Peter Herth <[email protected]>
;; Portions Copyright (c) 2005-2010 Thomas F. Burdick
;; Portions Copyright (c) 2006-2010 Cadence Design Systems
;; Portions Copyright (c) 2010 Daniel Herring
;; The authors grant you the rights to distribute
;; and use this software as governed by the terms
;; of the Lisp Lesser GNU Public License
;; (http://opensource.franz.com/preamble.html),
;; known as the LLGPL.
;; This program 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.
(defsystem nodgui
:name "nodgui"
:version "0.7.2.1"
:author "cage"
:encoding :utf-8
:maintainer "cage"
:bug-tracker "https://codeberg.org/cage/nodgui/issues"
:licence "LLGPL"
:description "Lisp bindings for the Tk toolkit"
:pathname "src"
:serial t
:depends-on (:alexandria
:cl-unicode
:cl-ppcre-unicode
:esrap
:parse-number
:cl-colors2
:named-readtables
:jpeg-turbo
:pngload
:zpng
:flexi-streams
:bordeaux-threads
:sdl2
:sdl2-ttf
:cl-opengl
:static-vectors
:trivial-garbage
#-asdf3 :uiop)
:components ((:file "package")
(:file "config")
(:file "constants")
(:file "typed-operations")
(:file "utils")
(:file "synchronized-queue")
(:file "non-blocking-queue")
(:file "base64")
(:file "ubvec4")
(:file "vec2")
(:file "vec3")
(:file "matrix")
(:file "fit-line")
(:file "pixmap")
(:file "sanitize")
(:file "event-symbols")
(:file "conditions")
(:file "tcl-emitter")
(:file "tcl-glue-code")
(:file "event-parser")
(:file "syntax")
(:file "wish-communication")
(:file "widget-helpers")
(:file "widget")
(:file "events")
(:file "nodgui")
(:file "photo-image")
(:file "tkvariable")
(:file "tktextvariable")
(:file "treeview")
(:file "button")
(:file "checkbutton")
(:file "radiobutton")
(:file "scrollbar")
(:file "combobox")
(:file "entry")
(:file "label")
(:file "labelframe")
(:file "listbox")
(:file "menu")
(:file "menubutton")
(:file "menucheckbutton")
(:file "menuradiobutton")
(:file "message")
(:file "notebook")
(:file "panedwindow")
(:file "progressbar")
(:file "scale")
(:file "separator")
(:file "sizegrip")
(:file "spinbox")
(:file "text")
(:file "frame")
(:file "canvas")
(:file "canvas-shapes")
(:file "toplevel")
(:file "dialog")
(:file "error-handling")
(:file "styles")
(:file "wm")
(:file "winfo")
(:file "trivial-debugger")
(:file "nodgui-mw")
(:file "rendering-buffer-context")
(:file "pixels-buffer")
(:file "opengl-frame")
(:module tklib
:components ((:file "package")
(:file "calendar")
(:file "notify-window")
(:file "plot")
(:file "swaplist")
(:file "misc-widget")))
(:file "demo-tests")
(:file "demo-pixels-buffer")
(:file "demo-3d-window")
(:file "tcl-lib-wrapped")
(:static-file "demo/shaders/3d-demo.frag")
(:static-file "demo/shaders/3d-demo.vert")))
(defsystem nodgui/test
:encoding :utf-8
:pathname "test"
:serial t
:depends-on (:nodgui
:clunit2)
:components ((:file "package")
(:file "all-tests")
(:file "test-non-blocking-queue")
(:file "test-tcl-emitter")
(:file "test-event-parser")
(:file "test-styles")
(:file "test-text-indices")
(:file "test-nodgui")))
(defsystem nodgui/game
:encoding :utf-8
:pathname "game"
:serial t
:depends-on (:nodgui
:clunit2)
:components ((:file "package")
(:file "aabb2")
(:file "entities")
(:file "world")
(:file "main")))
(pushnew :nodgui *features*)
(pushnew :optimize-nodgui *features*)
;; (pushnew :debug-game *features*)
;; (pushnew :suppress-debug-messages *features*)