6f60aeac24f1e1d2620aa3b40738b7db7fc8949f
[iolib.git] / src / iolib.asd
blob6f60aeac24f1e1d2620aa3b40738b7db7fc8949f
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
3 (asdf:defsystem :iolib
4   :description "I/O library."
5   :author "Stelian Ionescu <sionescu@cddr.org>"
6   :maintainer "Stelian Ionescu <sionescu@cddr.org>"
7   :version (:read-file-form "../version.lisp-expr")
8   :licence "MIT"
9   :defsystem-depends-on (:iolib.asdf :iolib.conf)
10   :depends-on (:iolib.base :iolib.multiplex :iolib.streams :iolib.sockets)
11   :around-compile "iolib.asdf:compile-wrapper"
12   :encoding :utf-8
13   :pathname "iolib/"
14   :components ((:file "pkgdcl")))
16 (defmethod perform ((o test-op) (c (eql (find-system :iolib))))
17   (oos 'test-op :iolib-tests))
19 (defmethod operation-done-p ((o test-op) (c (eql (find-system :iolib))))
20   nil)