forked from death/dbus
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdbus.asd
31 lines (28 loc) · 992 Bytes
/
dbus.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
;;;; +----------------------------------------------------------------+
;;;; | DBUS DEATH, 2010-2011 |
;;;; +----------------------------------------------------------------+
;;;; System definition
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
(asdf:defsystem #:dbus
:depends-on (#:alexandria #:babel #:cl-xmlspam #:flexi-streams
#:iolib #:ironclad #:split-sequence #-sbcl #:ieee-floats)
:serial t
:components
((:file "packages")
#+sbcl (:file "dbus-sbcl")
#-sbcl (:file "dbus-ccl")
(:file "utils")
(:file "protocols")
(:file "conditions")
(:file "types")
(:file "type-definitions")
(:file "messages")
(:file "server-addresses")
(:file "authentication-mechanisms")
(:file "connections")
(:file "introspect")
(:file "convenience")
(:file "standard-interfaces")
(:file "transport-unix")
(:file "auth-dbus-cookie-sha1")
(:file "auth-dbus-external")))