summary refs log tree commit diff
path: root/advent.asd
blob: d67098da9622b8cb93487d7bfb68674f5650df95 (plain)
1
2
3
4
5
6
7
8
9
10
11
(asdf:defsystem #:advent
                :serial t
                :description "Advent of Code"
                :author "Emile Hansmaennel <cl@emile.space>"
                :license "MIT"
                :depends-on (#:alexandria)
                :components ((:file "package")
                             (:file "utils")
                             (:module "2024"
                                      :components ((:file "package")
                                                   (:file "d01")))))