-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path3d-spaces.asd
38 lines (37 loc) · 1.46 KB
/
3d-spaces.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
(asdf:defsystem 3d-spaces
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "A library implementing spatial query structures"
:homepage "https://shirakumo.github.io/3d-spaces/"
:bug-tracker "https://github.com/shirakumo/3d-spaces/issues"
:source-control (:git "https://github.com/shirakumo/3d-spaces.git")
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "protocol")
(:file "bvh2")
(:file "quadtree")
(:file "grid3")
(:file "kd-tree")
(:file "documentation"))
:depends-on (:documentation-utils
:3d-math
:text-draw
:trivial-extensible-sequences
:for)
:in-order-to ((asdf:test-op (asdf:test-op :3d-spaces/test))))
(asdf:defsystem 3d-spaces/test
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Tests for the 3d-spaces system."
:homepage "https://shirakumo.github.io/3d-spaces/"
:bug-tracker "https://github.com/shirakumo/3d-spaces/issues"
:source-control (:git "https://github.com/shirakumo/3d-spaces.git")
:serial T
:components ((:file "test"))
:depends-on (:3d-spaces :parachute)
:perform (asdf:test-op (op c) (uiop:symbol-call :parachute :test :org.shirakumo.fraf.trial.space.test)))