changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 342: 254cca648492
parent: 1e5e4bbcdf8b
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 13 May 2024 21:10:33 -0400
permissions: -rw-r--r--
description: homer fixups
1 (defsystem :krypt
2  :version "0.1.0"
3  :maintainer "ellis <ellis@rwest.io>"
4  :bug-tracker "https://vc.compiler.company/comp/core/issues"
5  :depends-on (:std :log :obj :dat :rdb :cry)
6  :serial t
7  :components ((:file "pkg")
8  (:file "err")
9  (:file "krypt"))
10  :in-order-to ((test-op (test-op :krypt/tests))))
11 
12 (defsystem :krypt/tests
13  :depends-on (:rt :krypt)
14  :components ((:file "tests"))
15  :perform (test-op (o c) (symbol-call :rt :do-tests :krypt)))