Get lambda reader macro working and fix day 03 bug
[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
37dc4d4e 12 :fn
3ef62a9d
JK
13 :fiveam)
14 :pathname "src/"
bb9e60f5 15 :components ((:file "../package")
37dc4d4e 16 (:file "utilities")
3ef62a9d
JK
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)))