Line | |
---|
1 | ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- |
---|
2 | |
---|
3 | (in-package :asdf) |
---|
4 | |
---|
5 | (defsystem :event-notification |
---|
6 | |
---|
7 | :components ((:file "event-notification") |
---|
8 | (:file "kqueue-cffi" :depends-on ("event-notification")) |
---|
9 | (:file "epoll-cffi" :depends-on ("event-notification")) |
---|
10 | (:file "kqueue" :depends-on ("event-notification" "kqueue-cffi")) |
---|
11 | (:file "epoll" :depends-on ("event-notification" "epoll-cffi"))) |
---|
12 | |
---|
13 | :depends-on (:cffi :nio-compat)) |
---|
14 | |
---|
Note: See
TracBrowser
for help on using the repository browser.