-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-influxdb.asd
35 lines (32 loc) · 997 Bytes
/
cl-influxdb.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
;;;; cl-influxdb.asd
(asdf:defsystem #:cl-influxdb
:serial t
:description "Common lisp binding for InfluxDB"
:author "Mike Maul <[email protected]>"
:license "MIT"
:depends-on (#:cl-json
#:drakma
#:do-urlencode
#:cl-annot
#:flexi-streams
#:usocket
)
:components ((:file "package")
(:file "cl-influxdb")
(:file "cl-influxdb-v8")))
(asdf:defsystem :cl-influxdb.examples
:description "Examples for influxdb"
:version "0.2.0"
:author "Mike Maul <[email protected]>"
:licence "MIT"
:encoding :utf-8
:depends-on (#:cl-influxdb
#:cl-annot
#:parse-number
#:split-sequence)
:components ((:module "examples"
:serial t
:components ((:file "package")
(:file "examples")
(:file "examples-v8")
))))