-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathginkgo-time.asd
32 lines (29 loc) · 1021 Bytes
/
ginkgo-time.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
;;;; ginkgo-time.asd
(asdf:defsystem #:ginkgo-time
:description
"Common Lisp library inspired by the Java API for dates, times, instants, and durations"
:author "Ákos Kiss <ak@coram.pub>"
:license "MIT License"
:serial t
:depends-on (#:zoneinfo
#:chronogram
#:trivial-clock
#:ironclad/prngs
#:frugal-uuid/non-frugal)
:components ((:file "package")
(:file "const")
(:file "generic")
(:file "chrono-unit")
(:file "duration")
(:file "clock")
(:file "instant")
(:file "ginkgo-time"))
:in-order-to ((test-op (test-op "ginkgo-time/test"))))
(asdf:defsystem #:ginkgo-time/test
:depends-on (#:ginkgo-time
#:fiveam)
:components ((:file "ginkgo-time-test"))
:perform (test-op (o c) (symbol-call :fiveam '#:run! :ginkgo-time)))
(asdf:defsystem #:ginkgo-time/*
:depends-on (#:ginkgo-time
#:ginkgo-time/test))