-
Notifications
You must be signed in to change notification settings - Fork 0
/
line-parser.asd
36 lines (35 loc) · 1008 Bytes
/
line-parser.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
(defsystem "line-parser"
:version "0.7.0"
:author "Maximilian Kueffner"
:mailto "[email protected]"
:license "zlib"
:depends-on (:clingon
:cl-ppcre)
:components ((:module "src"
:pathname #P"src/"
:components
((:file "package")
(:file "parameters")
(:file "main")
(:file "parser")
(:file "commandline"))))
:description ""
:build-operation "program-op"
:build-pathname "build/line-parser"
:entry-point "line-parser:main"
:in-order-to ((test-op (test-op "line-parser/tests"))))
(defsystem "line-parser/tests"
:author "Maximilian Kueffner"
:license "zlib"
:depends-on ("line-parser"
"fiveam")
:components ((:module "tests"
:components
((:file "package")
(:file "testparameters")
(:file "helpers")
(:file "main")
(:file "extensions")
(:file "configuration"))))
:description "Test system for line-parser"
:perform (test-op (op c) (symbol-call :rove :run c)))