source: trunk/nio.asd

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

Moved to standard directory structure

File size: 294 bytes
Line 
1;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2
3(in-package :asdf)
4
5(defsystem :nio
6
7    :components ((:file "src/nio")
8                 (:file "src/async-fd" :depends-on ("src/nio"))
9                 (:file "src/async-socket" :depends-on ("src/async-fd"))
10                 )
11
12    :depends-on (:cffi :event-notification))
13
Note: See TracBrowser for help on using the repository browser.