changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 482: 686748796f08
parent: 9fa3b9154bb2
child: da17bf652e48
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 28 Jun 2024 23:33:07 -0400
permissions: -rw-r--r--
description: progress on Q
1 (defsystem :io
2  :description "Lisp IO Interface"
3  :depends-on (:cl-ppcre :std :obj :uring :sb-bsd-sockets :zstd :flexi-streams)
4  :version "0.1.0"
5  :serial t
6  :components ((:file "pkg")
7  (:file "ring")
8  (:file "socket")
9  (:file "stream")
10  (:file "proto")
11  (:file "flate")
12  (:file "port")
13  (:file "zstd")
14  (:file "xsubseq")
15  (:file "smart-buffer"))
16  :in-order-to ((test-op (test-op "io/tests"))))
17 
18 (defsystem :io/tests
19  :depends-on (:rt :io :uring :sb-bsd-sockets)
20  :components ((:file "tests"))
21  :perform (test-op (o c) (symbol-call :rt :do-tests :io)))