changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 254cca648492
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
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)))