changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/io/io.asd

changeset 698: 96958d3eb5b0
parent: 90417ae14b21
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :io
2  :description "Lisp IO Interface"
3  :depends-on (:cl-ppcre
4  :std :obj
5  (:feature :linux :uring)
6  (:feature :linux :xkb)
7  (:feature :linux :evdev)
8  :sb-bsd-sockets :zstd :flexi-streams)
9  :version "0.1.0"
10  :serial t
11  :components ((:file "pkg")
12  (:file "fast")
13  (:file "ring" :if-feature :linux)
14  (:file "socket")
15  (:file "stream")
16  (:file "proto")
17  (:file "flate")
18  (:file "port")
19  (:file "zstd")
20  (:file "kbd")
21  (:file "xsubseq")
22  (:file "smart-buffer"))
23  :in-order-to ((test-op (test-op "io/tests"))))
24 
25 (defsystem :io/tests
26  :depends-on (:rt :io :uring :sb-bsd-sockets)
27  :components ((:file "tests"))
28  :perform (test-op (o c) (symbol-call :rt :do-tests :io)))