-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsb-protocol.asd
35 lines (29 loc) · 1.48 KB
/
rsb-protocol.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
35
;;;; rsb-protocol.asd --- System for loading the native RSB communication protocol.
;;;;
;;;; Copyright (C) 2011-2018 Jan Moringen
;;;;
;;;; Author: Jan Moringen <[email protected]>
#.(unless (find-package '#:rsb-system)
(load (merge-pathnames "rsb.asd" *load-truename*))
(values))
(cl:in-package #:rsb-system)
(defsystem "rsb-protocol"
:description "Google protocol buffer-based communication protocol."
:license "LGPLv3" ; see COPYING file for details.
:author "Jan Moringen <[email protected]>"
:maintainer "Jan Moringen <[email protected]>"
:version #.(version/string)
:defsystem-depends-on ("cl-protobuf")
:components ((:protocol-buffer-descriptor-directory "protocol"
:pathname "data"
:serial t
:components ((:file "EventId"
:pathname "rsb/protocol/EventId")
(:file "EventMetaData"
:pathname "rsb/protocol/EventMetaData")
(:file "Notification"
:pathname "rsb/protocol/Notification")
(:file "FragmentedNotification"
:pathname "rsb/protocol/FragmentedNotification")
(:file "EventsByScopeMap"
:pathname "rsb/protocol/collections/EventsByScopeMap")))))