changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 686748796f08
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; rdb.asd --- thin RocksDB ORM
2 (defsystem "rdb"
3  :version "0.1.0"
4  :maintainer "ellis <ellis@rwest.io>"
5  :bug-tracker "https://vc.compiler.company/comp/core/issues"
6  :depends-on (:std :rocksdb :obj :log :q)
7  :serial t
8  :components ((:file "pkg")
9  (:file "err")
10  (:file "macs")
11  (:file "raw")
12  (:file "proto")
13  (:file "obj")
14  (:file "sst")
15  (:file "query"))
16  :in-order-to ((test-op (test-op :rdb/tests))))
17 
18 (defsystem :rdb/tests
19  :depends-on (:rt :rocksdb :rdb :log)
20  :components ((:file "tests"))
21  :perform (test-op (op c) (uiop:symbol-call '#:rt '#:do-tests :rdb)))
22