summary refs log tree commit diff
path: root/advent.asd
diff options
context:
space:
mode:
Diffstat (limited to 'advent.asd')
-rw-r--r--advent.asd11
1 files changed, 11 insertions, 0 deletions
diff --git a/advent.asd b/advent.asd
new file mode 100644
index 0000000..d67098d
--- /dev/null
+++ b/advent.asd
@@ -0,0 +1,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")))))