-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixed.asd
More file actions
35 lines (32 loc) · 1009 Bytes
/
fixed.asd
File metadata and controls
35 lines (32 loc) · 1009 Bytes
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
;;;; fixed.asd
(asdf:defsystem #:fixed
:description "A fixed-point number type."
:author "Nick Patrick <npatrick04@gmail.com>"
:license "MIT"
:version "0.0.2"
:serial t
:components ((:module "src"
:components
((:file "package")
(:file "reader")
(:file "fixed")))))
(asdf:defsystem #:fixed/real-time
:description "A fixed-point internal real-time type."
:author "Nick Patrick <npatrick04@gmail.com>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (:fixed)
:components ((:module "src"
:components
((:file "time")))))
(asdf:defsystem #:fixed/test
:description "Test suite for FIXED"
:author "Nick Patrick <npatrick04@gmail.com>"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (:fixed :fiveam)
:components ((:module "test"
:components
((:file "test")))))