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