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