forked from izz-j/gamebox-math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorigin.asd
26 lines (26 loc) · 807 Bytes
/
origin.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
(asdf:defsystem #:origin
:description "A native Lisp graphics math library with an emphasis on performance and correctness."
:author "Michael Fiano <[email protected]>"
:maintainer "Michael Fiano <[email protected]>"
:license "MIT"
:homepage "https://github.com/mfiano/origin"
:source-control (:git "[email protected]:mfiano/origin.git")
:bug-tracker "https://github.com/mfiano/origin/issues"
:encoding :utf-8
:depends-on (#:golden-utils
#:alexandria)
:pathname "src"
:serial t
:in-order-to ((asdf:test-op (asdf:test-op #:origin.test)))
:components
((:file "internal")
(:file "common")
(:file "swizzle")
(:file "shaping")
(:file "vec2")
(:file "vec3")
(:file "vec4")
(:file "mat2")
(:file "mat3")
(:file "mat4")
(:file "quat")))