changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: ea3b643a27a3
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :aud
2  :description "High-level Audio API"
3  :depends-on (:cl-ppcre :std :obj :dat :alsa :sndfile :net)
4  :version "0.1.0"
5  :serial t
6  :components ((:file "pkg")
7  (:file "mpd"))
8  :in-order-to ((test-op (test-op "aud/tests"))))
9 
10 (defsystem :aud/tests
11  :depends-on (:rt :aud)
12  :components ((:file "tests"))
13  :perform (test-op (o c) (symbol-call :rt :do-tests :aud)))