changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 258: 11ef863e0ac0
parent: f89fb3fbffd6
child: 2a4f11c0e8c8
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 01 Apr 2024 23:58:17 -0400
permissions: -rw-r--r--
description: keyutils init
1 (defsystem :io
2  :description "Lisp IO Interface"
3  :depends-on (:cl-ppcre :std :obj :uring :sb-bsd-sockets)
4  :version "0.1.0"
5  :serial t
6  :components ((:file "pkg"))
7  :in-order-to ((test-op (test-op "io/tests"))))
8 
9 (defsystem :io/tests
10  :depends-on (:rt :io :uring :sb-bsd-sockets)
11  :perform (test-op (o c) (symbol-call :rt :do-tests :io)))