-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifolds.asd
35 lines (34 loc) · 1.37 KB
/
manifolds.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
(asdf:defsystem manifolds
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Various manifold mesh algorithms"
:homepage "https://shirakumo.github.io/manifolds/"
:bug-tracker "https://github.com/shirakumo/manifolds/issues"
:source-control (:git "https://github.com/shirakumo/manifolds.git")
:serial T
:components ((:file "package")
(:file "types")
(:file "manifolds")
#++(:file "convert")
(:file "miniball")
(:file "normalize")
(:file "documentation"))
:depends-on (:3d-math
:3d-spaces
:documentation-utils)
:in-order-to ((asdf:test-op (asdf:test-op :manifolds/test))))
(asdf:defsystem manifolds/test
:version "1.0.0"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "Tests for the manifolds system."
:homepage "https://shirakumo.github.io/manifolds/"
:bug-tracker "https://github.com/shirakumo/manifolds/issues"
:source-control (:git "https://github.com/shirakumo/manifolds.git")
:serial T
:components ((:file "test"))
:depends-on (:manifolds :cl-wavefront :parachute)
:perform (asdf:test-op (op c) (uiop:symbol-call :parachute :test :org.shirakumo.fraf.manifolds.test)))