changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 806c2b214df8
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; q.asd --- Query Systems
2 (defsystem :q
3  :description "Query System"
4  :depends-on (:std :obj :log :dat :parse)
5  :components ((:file "pkg")
6  (:file "parser")
7  (:file "engine")
8  (:file "sql" :depends-on ("pkg"))
9  (:file "dql" :depends-on ("pkg")))
10  :in-order-to ((test-op (test-op "q/tests"))))
11 
12 (defsystem :q/tests
13  :depends-on (:std :rt :q :log)
14  :components ((:module "tests"
15  :components ((:file "pkg")
16  (:file "fuzz")
17  (:file "suite"))))
18  :in-order-to ((test-op (test-op "q/tests"))))