-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgamebox-math.asd
31 lines (30 loc) · 987 Bytes
/
gamebox-math.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
(in-package :cl-user)
(asdf:defsystem #:gamebox-math
:description "A high performance math library useful for making games."
:author "Michael Fiano <michael.fiano@gmail.com>"
:maintainer "Michael Fiano <michael.fiano@gmail.com>"
:license "MIT"
:homepage "https://github.com/mfiano/gamebox-math"
:bug-tracker "https://github.com/mfiano/gamebox-math/issues"
:source-control (:git "git@github.com:mfiano/gamebox-math.git")
:version "0.1.0"
:encoding :utf-8
:long-description #.(uiop:read-file-string (uiop/pathname:subpathname *load-pathname* "README.md"))
:depends-on (#:alexandria
#:defstar)
:pathname "src"
:serial t
:components
((:file "package")
(:file "common")
(:file "vector-base")
(:file "vector-ops")
(:file "vector-doc")
(:file "matrix-base")
(:file "matrix-ops")
(:file "matrix-doc")
(:file "quaternion-base")
(:file "quaternion-ops")
(:file "quaternion-doc")
(:file "math")
(:file "math-doc")))