forked from Shinmera/3d-vectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
3d-vectors.asd
25 lines (23 loc) · 897 Bytes
/
3d-vectors.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
#|
This file is a part of 3d-vectors
(c) 2015 Shirakumo http://tymoon.eu ([email protected])
Author: Nicolas Hafner <[email protected]>
|#
(asdf:defsystem 3d-vectors
:version "3.1.0"
:license "Artistic"
:author "Nicolas Hafner <[email protected]>"
:maintainer "Nicolas Hafner <[email protected]>"
:description "A utility library implementing 2D, 3D, and 4D vector functionality."
:homepage "https://Shinmera.github.io/3d-vectors/"
:bug-tracker "https://github.com/Shinmera/3d-vectors/issues"
:source-control (:git "https://github.com/Shinmera/3d-vectors.git")
:serial T
:components ((:file "package")
(:file "toolkit")
;;(:file "ssa")
(:file "struct")
(:file "ops")
(:file "documentation"))
:depends-on (:documentation-utils)
:in-order-to ((asdf:test-op (asdf:test-op :3d-vectors-test))))