aboutsummaryrefslogtreecommitdiff
path: root/aoc.asd
blob: 851755fa842b56436764680191eaa9ef26a7968a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;;;; aoc-2022-3.asd

(asdf:defsystem #:aoc
  :description "Advent Of Code"
  :author "Mario Forzanini <mf@marioforzanini.com>"
  :license "GPL3.0-or-later"
  :version "0.0.1"
  :serial t
  :depends-on (#:alexandria #:str #:md5)
  :components ((:module "2022"
                :components ((:file "3")
                             (:file "4")
                             (:file "5")
                             (:file "6")
                             (:file "7")
                             (:file "8")))
               (:module "2015"
                :components ((:file "1")
                             (:file "2")
                             (:file "3")
                             (:file "4")
                             (:file "5")))))