summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSon Ho2023-03-07 12:31:18 +0100
committerSon HO2023-06-04 21:44:33 +0200
commit0d8433a5e7a2d1e91512a6422506dbd19241d128 (patch)
treebc781babc7936330da99feb4ec8ae138083cfa15 /tests
parentbd7ef0f9d45d10b4439e125d006b2dd4319fd1c9 (diff)
Automate the generation of the lakefile.lean files
Diffstat (limited to '')
-rw-r--r--tests/lean/hashmap_on_disk/lakefile.lean10
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/lean/hashmap_on_disk/lakefile.lean b/tests/lean/hashmap_on_disk/lakefile.lean
index 0ca1ef9b..bdb614cd 100644
--- a/tests/lean/hashmap_on_disk/lakefile.lean
+++ b/tests/lean/hashmap_on_disk/lakefile.lean
@@ -4,19 +4,15 @@ open Lake DSL
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git"
-package «hashmap» {
+package «hashmap_main» {
-- add package configuration options here
}
-lean_lib «HashmapMain» {
+lean_lib «Base» {
-- add library configuration options here
}
-lean_lib «Base» {
+lean_lib «HashmapMain» {
-- add library configuration options here
}
-@[default_target]
-lean_exe «hashmap» {
- root := `Main
-}