-
Notifications
You must be signed in to change notification settings - Fork 1
/
prompter.asd
40 lines (38 loc) · 1.28 KB
/
prompter.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;;;; SPDX-FileCopyrightText: Atlas Engineer LLC
;;;; SPDX-License-Identifier: BSD-3-Clause
(defsystem "prompter"
:description "Live-narrowing, fuzzy-matching, extensible prompt framework"
:author "Atlas Engineer LLC"
:homepage "https://github.com/atlas-engineer/prompter"
:license "BSD-3 Clause"
:version "0.1.1"
:serial t
:depends-on (alexandria
calispel
cl-containers
closer-mop
lparallel
moptilities
nclasses
serapeum
str
trivial-package-local-nicknames)
:components ((:file "package")
(:file "filter-preprocessor")
(:file "filter")
(:file "prompter-source")
(:file "prompter"))
:in-order-to ((test-op (test-op "prompter/tests"))))
(defsystem "prompter/tests"
:depends-on ("prompter" "lisp-unit2")
:serial t
:pathname "tests/"
:components ((:file "package")
(:file "tests")
(:file "fuzzy")
(:file "submatches"))
:perform (test-op (op c)
(eval-input
"(lisp-unit2:run-tests
:package :prompter/tests
:run-contexts #'lisp-unit2:with-summary-context)")))