source: branches/home/psmith/restructure/src/io/nio.asd

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

Reconnect working

File size: 597 bytes
Line 
1;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2
3(in-package :asdf)
4
5(defsystem :nio
6
7    :components ((:file "nio-package")
8                 (:file "fd-helper" :depends-on ("nio-package"))
9                 (:file "packet" :depends-on ("nio-package"))
10                 (:file "async-fd" :depends-on ("fd-helper"))
11                 (:file "nodes" :depends-on ("nio-package"))
12                 (:file "async-socket" :depends-on ("async-fd" "nodes"))
13                 (:file "nio-server" :depends-on ("async-socket" "nodes"))
14                 (:file "ip-authorisation" :depends-on ("nio-package"))
15                 )
16
17    :depends-on (:cffi :event-notification :nio-buffer :nio-compat :nio-utils))
18
Note: See TracBrowser for help on using the repository browser.