changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/ffi/rocksdb/rocksdb.asd

changeset 7: 05527b920c97
child: c953c2a35835
author: ellis <ellis@rwest.io>
date: Mon, 16 Oct 2023 23:11:19 -0400
permissions: -rw-r--r--
description: asd cleanups
1 ;;; rocksdb.asd --- ROCKSDB SYSTEMS
2 
3 ;; rocksdb for lisp.
4 
5 ;;; Commentary:
6 
7 ;;
8 
9 ;;; Code:
10 (defsystem "rocksdb"
11  :depends-on (:std)
12  :description "based on Vee's cl-rocksdb: https://github.com/veer66/cl-rocksdb/tree/main"
13  :class :package-inferred-system
14  :in-order-to ((test-op (test-op "rocksdb/tests")))
15  :perform (test-op (op c) (uiop:symbol-call '#:rt '#:do-tests :rocksdb))
16  :components ((:file "rocksdb")))