forked from igorpikman/clon
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcl-schedule.asd
23 lines (22 loc) · 885 Bytes
/
cl-schedule.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(defsystem :cl-schedule
:name "cl-schedule"
:author ("Jin-Cheng Guu <[email protected]>")
:description "cl-schedule is a cron-like scheduling library in
common-lisp. It subsumes and replaces traditional cron managers
thanks to richer expressiveness of Lisp."
:license "MIT"
:version "2.0.0"
:components ((:module "src"
:components ((:file "package")
(:file "setup")
(:file "schedule")
(:file "util")
(:file "time-spec")
(:file "scheduler")
(:file "dispatcher")
(:file "main")
;; (:file "test")
)))
:serial t
:depends-on (:bordeaux-threads :local-time))
(local-time:enable-read-macros)