source: trunk/event-notification.asd

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

Moved to standard directory structure

File size: 486 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 "src/event-notification")
8                 (:file "src/kqueue-cffi" :depends-on ("src/event-notification"))
9                 (:file "src/epoll-cffi" :depends-on ("src/event-notification"))
10                 (:file "src/kqueue" :depends-on ("src/event-notification" "src/kqueue-cffi"))
11                 (:file "src/epoll" :depends-on ("src/event-notification" "src/epoll-cffi")))
12
13    :depends-on (:cffi))
14
Note: See TracBrowser for help on using the repository browser.