changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 394: a866723aac84
parent: 95b861dff3d8
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 01 Jun 2024 19:16:02 -0400
permissions: -rw-r--r--
description: init qmp
1 (defsystem :box
2  :description "Kernel virtualization support for Lisp - wraps QEMU,archiso,etc."
3  :depends-on (:std :cli :obj :dat :net :log)
4  :components ((:file "pkg")
5  (:file "archiso")
6  (:file "qmp"))
7  :in-order-to ((test-op (test-op :box/tests))))
8 
9 (defsystem :box/tests
10  :depends-on (:rt :box :log)
11  :components ((:file "tests"))
12  :perform (test-op (o c) (symbol-call :rt :do-tests :box)))