diff options
author | Son Ho | 2023-03-07 12:31:46 +0100 |
---|---|---|
committer | Son HO | 2023-06-04 21:44:33 +0200 |
commit | 839c2f0f02788825455f46516d988c9fdb8cf6a7 (patch) | |
tree | 98e75c3a53e2df30f876f6095513e10c494a8c5f /tests/lean/hashmap | |
parent | 0d8433a5e7a2d1e91512a6422506dbd19241d128 (diff) |
Generate all the lakefile.lean files
Diffstat (limited to '')
-rw-r--r-- | tests/lean/hashmap/lakefile.lean | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/lean/hashmap/lakefile.lean b/tests/lean/hashmap/lakefile.lean new file mode 100644 index 00000000..c7d79306 --- /dev/null +++ b/tests/lean/hashmap/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «hashmap» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «Hashmap» { + -- add library configuration options here +} + |