source: branches/home/psmith/restructure/src/event/event-notification.asd

Last change on this file was 17, checked in by psmith, 18 years ago

more tidy

File size: 454 bytes
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.