-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path3b-openxr.asd
45 lines (42 loc) · 1.42 KB
/
3b-openxr.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
(defsystem 3b-openxr
:description "Common Lisp bindings for the OpenXR API"
:depends-on (cffi alexandria trivial-features 3b-openxr/bindings)
:serial t
:license "MIT"
:author "Bart Botta <00003b at gmail.com>"
:components ((:file "package")
(:file "mid-level")
(:file "generated-macros")
(:file "errors")
(:file "util")
(:file "macros")
(:file "wrappers-2")
(:file "wrappers-3")
(:file "wrappers-4")
(:file "wrappers-5")
(:file "wrappers-6")
(:file "wrappers-7")
(:file "wrappers-8")
(:file "wrappers-9")
(:file "wrappers-10")
(:file "wrappers-11")
(:file "wrappers-extensions")
(:file "misc")
))
(defsystem 3b-openxr/bindings
:description "Common Lisp bindings for the OpenXR API (low-level part)"
:depends-on (cffi alexandria trivial-features)
:serial t
:license "MIT"
:author "Bart Botta <00003b at gmail.com>"
:components ((:file "bindings-package")
(:file "library")
(:file "bindings-utils")
(:file "types")
(:file "bindings")
(:file "constants")
(:file "manual-structs")
(:file "bindings-late")
))
#++
(ql:quickload '3b-openxr)