]>
Commit | Line | Data |
---|---|---|
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 | :cl-interpol | |
13 | :fn | |
14 | :fiveam) | |
15 | :pathname "src/" | |
16 | :components ((:file "../package") | |
17 | (:file "utilities") | |
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))) |