-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulti-timer.asd
34 lines (28 loc) · 1.13 KB
/
multi-timer.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
;;;; **************************************************************************
;;;; **************************************************************************
;;;; *
;;;; * Multi timer
;;;; * A small library for handling many time outs with few threads
;;;; * multi-timer.asd - The ASDF system definition
;;;; * by Eric O'Connor
;;;; *
;;;; **************************************************************************
;;;; **************************************************************************
(in-package :cl-user)
(defpackage multi-timer-system
(:use :cl :asdf))
(in-package :multi-timer-system)
(defsystem multi-timer
:name "Multi Timer"
:author "Eric O'Connor"
:maintainer "Eric O'Connor"
:description "A small library for handling many time outs with few threads"
:version "1.0.0"
:license "MIT"
:depends-on (bordeaux-threads queues.priority-cqueue)
:serial t
:components ((:file "package")
(:file "timer")))
;;; ===========================================================================
;;; End of file
;;; ===========================================================================