-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
cl-liballegro.asd
117 lines (117 loc) · 3.13 KB
/
cl-liballegro.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
(in-package #:cl-user)
(asdf:defsystem cl-liballegro
:description "Allegro 5 game programming library bindings for Common Lisp"
:license "zlib"
:version "0.2.26"
:author "resttime"
:depends-on (:cffi
:cffi-libffi
:trivial-garbage
:trivial-gray-streams
:trivial-main-thread
:float-features)
:serial t
:components
((:module "src"
:components
((:file "package")
(:file "library")
(:module "constants"
:components
((:file "display")
(:file "events")
(:file "file-io")
(:file "filesystem")
(:file "fixed-point-math")
(:file "graphics")
(:file "haptic")
(:file "joystick")
(:file "keyboard")
(:file "misc")
(:file "mouse")
(:file "opengl")
(:file "touch-input")
(:file "shader")
(:file "state")
(:file "system")
(:module "addons"
:components
((:file "audio")
(:file "font")
(:file "native-dialogs")
(:file "video-streaming")))))
(:module "types"
:components
((:file "events")
(:file "filesystem")
(:file "file-io")
(:file "fixed-point-math")
(:file "fullscreen-modes")
(:file "graphics")
(:file "haptic")
(:file "joystick")
(:file "keyboard")
(:file "memory")
(:file "monitor")
(:file "mouse")
(:file "shader")
(:file "state")
(:file "threads")
(:file "time")
(:file "timer")
(:file "touch-input")
(:file "transformations")
(:file "utf-8")
(:file "types")
(:module "addons"
:components
((:file "audio")
(:file "font")
(:file "native-dialogs")))))
(:module "ffi-functions"
:components
((:file "configuration-files")
(:file "display")
(:file "events")
(:file "file-io")
(:file "filesystem")
(:file "fixed-point-math")
(:file "fullscreen-modes")
(:file "graphics")
(:file "haptic")
(:file "joystick")
(:file "keyboard")
(:file "memory")
(:file "monitor")
(:file "mouse")
(:file "path")
(:file "shader")
(:file "state")
(:file "system")
(:file "threads")
(:file "time")
(:file "timer")
(:file "touch-input")
(:file "transformations")
(:file "utf-8")
(:file "misc")
(:file "platform-specific")
(:file "direct3d")
(:file "opengl")
(:module "addons"
:components
((:file "audio")
(:file "audio-codecs")
(:file "color")
(:file "font")
(:file "image-io")
(:file "memfile")
(:file "native-dialogs")
(:file "physicsfs")
(:file "primatives")
(:file "video-streaming")))))
;; Higher Level Lisp API
(:module "interface"
:components
((:file "interface")
(:file "streams")))))))