-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathndbapi-examples.asd
More file actions
21 lines (20 loc) · 1.46 KB
/
ndbapi-examples.asd
File metadata and controls
21 lines (20 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; Copyright (c) 2022 Max-Gerd Retzlaff <mgr@matroid.org>, Datagraph GmbH.
;;; Distributed under the terms of the GNU General Public License, Version 2.0,
;;; see file LICENSE in the top level directory of this repository.
(asdf:defsystem :ndbapi-examples
:description "Examples for NDB API interface (for RonDB)."
:author "Max-Gerd Retzlaff <mgr@matroid.org>"
:depends-on (:cffi :ndbapi :ndbapi-ic-compiler)
:components ((:module "examples"
:components ((:file "package")
(:file "ndb-quads" :depends-on ("package"))
(:file "ndbapi-simple-scan" :depends-on ("ndb-quads"))
(:file "ndbapi-scan-count-recattr" :depends-on ("ndb-quads"))
(:file "ndbapi-scan-count" :depends-on ("ndb-quads"))
(:file "ndbapi-list-indexes" :depends-on ("package"))
(:file "ndbapi-decode-columns" :depends-on ("ndb-quads"))
(:file "ndbapi-interpreted-scan" :depends-on ("ndb-quads"))
(:file "ndbapi-interpreted-scan_compiled-ic" :depends-on ("ndb-quads"))
(:file "ndbapi-revisioned-scan-test" :depends-on ("ndb-quads"))
(:file "ndbapi-revisioned-scan" :depends-on ("ndb-quads"))
(:file "ndbapi-spocq-revisioned-scan" :depends-on ("ndb-quads" "ndbapi-revisioned-scan"))))))