-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstl-io.asd
25 lines (24 loc) · 827 Bytes
/
stl-io.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
(defsystem stl-io
:name "stl-io"
:version "0.1"
:author "Thomas HOULLIER"
:description "Reading and writing .stl files."
:depends-on ("lisp-binary")
:components
((:module "src"
:components ((:file "package")
(:file "norm-vec" :depends-on ("package"))
(:file "defbinary" :depends-on ("package"))
(:file "stl-io"
:depends-on ("package" "defbinary" "norm-vec")))))
:in-order-to ((test-op (test-op "stl-io/test"))))
(defsystem stl-io/test
:name "stl-io/test"
:version "0.1"
:author "Thomas HOULLIER"
:description "Rove test suite for stl-io."
:depends-on ("stl-io" "rove" "alexandria" "uiop" "asdf")
:components
((:module "test"
:components ((:file "rove-suite"))))
:perform (test-op (o c) (symbol-call :rove '#:run c)))