-
Notifications
You must be signed in to change notification settings - Fork 0
/
picl.asd
42 lines (38 loc) · 1.42 KB
/
picl.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
41
42
;;;; picl.asd
(asdf:defsystem #:picl
:description "Python Itertools in Common Lisp"
:author "Anish Moorthy <[email protected]>"
:homepage "https://anlsh.github.io/picl/"
:license "MIT"
:version "1.0.1"
:serial t
:depends-on (#:defclass-std #:alexandria)
:components
((:module "src"
:components ((:file "package")
(:file "interface" :depends-on ("package"))
(:file "default-iterators" :depends-on ("interface"))
(:file "utils" :depends-on ("interface"))
(:file "itertools" :depends-on ("utils"))
(:file "combinatoric" :depends-on ("utils")))))
:in-order-to ((test-op (test-op #:picl/tests))))
(asdf:defsystem #:picl/iterate
:description "Iterate driver for PICL"
:serial t
:depends-on (#:picl #:alexandria #:iterate)
:components
((:module "src"
:components ((:file "iterate-driver")))))
;; Tests
(asdf:defsystem #:picl/tests
:description "Tests for PICL"
:serial t
:depends-on (#:picl #:picl/iterate #:fiveam #:generic-cl #:alexandria #:iterate)
:components
((:module "tests"
:components ((:file "package")
(:file "test-itertools" :depends-on ("package"))
(:file "test-combinatoric" :depends-on ("package")))))
:perform (test-op (op system)
(funcall (read-from-string "fiveam:run!")
(read-from-string "picl/tests:suite"))))