forked from Shinmera/3d-math
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3d-math-test.asd
More file actions
23 lines (22 loc) · 876 Bytes
/
Copy path3d-math-test.asd
File metadata and controls
23 lines (22 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#|
This file is a part of 3d-math
(c) 2023 Shirakumo http://shirakumo.org (shirakumo@tymoon.eu)
|#
(asdf:defsystem 3d-math-test
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <shinmera@tymoon.eu>"
:maintainer "Yukari Hafner <shinmera@tymoon.eu>"
:description "Tests for the 3d-math system."
:homepage "https://Shinmera.github.io/3d-math/"
:bug-tracker "https://github.com/Shinmera/3d-math/issues"
:source-control (:git "https://github.com/Shinmera/3d-math.git")
:serial T
:components ((:file "test")
(:file "vectors/test")
(:file "matrices/test")
(:file "quaternions/test")
(:file "dual-quaternions/test")
(:file "transforms/test"))
:depends-on (:3d-math :parachute)
:perform (asdf:test-op (op c) (uiop:symbol-call :parachute :test :org.shirakumo.fraf.math.test)))