-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbasic-binary-ipc.asd
52 lines (49 loc) · 1.59 KB
/
basic-binary-ipc.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(in-package "ASDF")
(eval-when (:compile-toplevel :load-toplevel :execute)
(asdf:load-system "cffi-grovel"))
(defsystem "basic-binary-ipc"
:author "Mark Cox"
:description "A inter-process communication library for transmitting binary data over a stream."
:license "Simplified BSD License variant"
:depends-on ("cffi-grovel")
:serial t
:components ((:module "src"
:serial t
:components ((:file "packages")
(:file "protocols")
(:file "system-calls")))
#+(or darwin freebsd linux)
(:module "src/posix"
:serial t
:pathname "src"
:components ((:file "posix-helpers")
(cffi-grovel:grovel-file "posix-grovel")
(:file "posix-cffi")
(:file "posix-socket-options")
(:file "posix-sockets")
(:file "posix-poll")))
#+(or darwin freebsd)
(:module "src/kqueue"
:serial t
:pathname "src"
:components ((cffi-grovel:grovel-file "kqueue-grovel")
(:file "kqueue-cffi")
(:file "kqueue-poller")))
#+linux
(:module "src/epoll"
:serial t
:pathname "src"
:components ((cffi-grovel:grovel-file "epoll-grovel")
(:file "epoll-cffi")
(:file "epoll-poller")))
#+windows
(:module "src/overlapped-io"
:serial t
:pathname "src"
:components ((:file "overlapped-io-packages")
(cffi-grovel:grovel-file "overlapped-io-grovel")
(:file "overlapped-io-errors")
(:file "overlapped-io-cffi")
(:file "overlapped-io")
(:file "windows"))))
:in-order-to ((test-op (test-op "basic-binary-ipc-tests"))))