Add day 05
[adventofcode2020.git] / adventofcode2020.asd
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
10 :cl-ppcre
11 :cl-utilities
12 :fn
13 :fiveam)
14 :pathname "src/"
15 :components ((:file "../package")
16 (:file "utilities")
17 (:file "adventofcode2020"))
18 :in-order-to ((test-op (test-op :adventofcode2020/test))))
19
20 (asdf:defsystem #:adventofcode2020/tests
21 :description "Advent of Code 2020 test suite"
22 :author "Jack Kinsey <journcy@gmail.com>"
23 :depends-on (:adventofcode2020 :fiveam)
24 :pathname "t/"
25 :components ((:file "package")
26 (:file "adventofcode2020"))
27 :perform (test-op (o c) (symbol-call :5am :run! :adventofcode2020)))