summaryrefslogtreecommitdiff
path: root/lakefile.lean
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2023-12-01 23:21:14 +0100
committerAndreas Grois <andi@grois.info>2023-12-01 23:30:43 +0100
commit24d7fab85b2eb1b7996fd0ceccdd0377f1ce087b (patch)
tree2295b86307d2e5e6fbb59f009d84a635d74ef096 /lakefile.lean
Day 1
Diffstat (limited to 'lakefile.lean')
-rw-r--r--lakefile.lean18
1 files changed, 18 insertions, 0 deletions
diff --git a/lakefile.lean b/lakefile.lean
new file mode 100644
index 0000000..ae16be8
--- /dev/null
+++ b/lakefile.lean
@@ -0,0 +1,18 @@
+import Lake
+open Lake DSL
+
+package «aoc-2023» where
+ -- add package configuration options here
+
+lean_lib «Day1» where
+ -- add library configuration options here
+
+lean_lib «Common» where
+
+@[default_target]
+lean_exe «aoc-2023» where
+ root := `Main
+ -- Enables the use of the Lean interpreter by the executable (e.g.,
+ -- `runFrontend`) at the expense of increased binary size on Linux.
+ -- Remove this line if you do not need such functionality.
+ supportInterpreter := true