-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathptql.asd
More file actions
29 lines (27 loc) · 830 Bytes
/
Copy pathptql.asd
File metadata and controls
29 lines (27 loc) · 830 Bytes
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
;;;; ptql.asd
(defsystem #:ptql
:description "Plain Text Query language"
:author "Carlo Sganzerla <mapard.carlo@gmail.com>"
:license "MIT"
:version "0.0.1"
:serial t
:build-operation "program-op"
:depends-on (#:parse-number)
:build-pathname "bin/ptql"
:entry-point "ptql:repl"
:pathname "src/"
:components ((:file "package")
(:file "utils")
(:file "table")
(:file "parser")
(:file "ptql")
(:file "repl"))
:in-order-to ((test-op (test-op #:ptql/test))))
(defsystem #:ptql/test
:depends-on (#:ptql #:fiveam)
:pathname "t/"
:components ((:file "package")
(:file "test")
(:file "parser-tests")
(:file "table-tests"))
:perform (test-op (o c) (symbol-call :ptql/test :run-tests)))