]>
Commit | Line | Data |
---|---|---|
a17acf6d 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 | |
6300d832 JK |
10 | :cl-ppcre |
11 | :cl-utilities | |
1e7c8ca9 | 12 | :cl-interpol |
524dde10 | 13 | :fn |
a17acf6d JK |
14 | :fiveam) |
15 | :pathname "src/" | |
6300d832 | 16 | :components ((:file "../package") |
524dde10 | 17 | (:file "utilities") |
a17acf6d 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))) |