Add cl-interpol
[adventofcode2020.git] / adventofcode2020.asd
CommitLineData
3ef62a9d
JK
1;;;; adventofcode2020.asd
2
3(asdf:defsystem #:adventofcode2020
4 :description "Advent of Code 2020"
5 :author "Jack Kinsey <journcy@gmail.com>"
6 :version "0.0.1"
7 :serial t
8 :depends-on (:alexandria
9 :arrow-macros
bb9e60f5
JK
10 :cl-ppcre
11 :cl-utilities
59b2be10 12 :cl-interpol
37dc4d4e 13 :fn
3ef62a9d
JK
14 :fiveam)
15 :pathname "src/"
bb9e60f5 16 :components ((:file "../package")
37dc4d4e 17 (:file "utilities")
3ef62a9d
JK
18 (:file "adventofcode2020"))
19 :in-order-to ((test-op (test-op :adventofcode2020/test))))
20
21(asdf:defsystem #:adventofcode2020/tests
22 :description "Advent of Code 2020 test suite"
23 :author "Jack Kinsey <journcy@gmail.com>"
24 :depends-on (:adventofcode2020 :fiveam)
25 :pathname "t/"
26 :components ((:file "package")
27 (:file "adventofcode2020"))
28 :perform (test-op (o c) (symbol-call :5am :run! :adventofcode2020)))