-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclaw-usb.asd
32 lines (28 loc) · 841 Bytes
/
claw-usb.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
(asdf:defsystem :claw-usb
:description "Thin bindings over libusb"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (:claw-usb-bindings))
(asdf:defsystem :claw-usb/wrapper
:description "Wrapper generator for libusb"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (:alexandria :uiop :cffi :claw-utils :claw)
:pathname "src/"
:serial t
:components ((:file "claw")
(:module :usb-includes :pathname "lib/usb/")))
(asdf:defsystem :claw-usb/example
:description "Example for claw-usb"
:version "1.0.0"
:author "Pavel Korolev"
:mailto "[email protected]"
:license "MIT"
:depends-on (:alexandria :uiop :claw-usb :cffi-c-ref)
:pathname "example/"
:serial t
:components ((:file "example")))