diff options
Diffstat (limited to '')
-rw-r--r-- | tests/lean/hashmap/lakefile.lean | 18 | ||||
-rw-r--r-- | tests/lean/misc/constants/lakefile.lean | 18 | ||||
-rw-r--r-- | tests/lean/misc/external/lakefile.lean | 18 | ||||
-rw-r--r-- | tests/lean/misc/loops/lakefile.lean | 18 | ||||
-rw-r--r-- | tests/lean/misc/no_nested_borrows/lakefile.lean | 18 | ||||
-rw-r--r-- | tests/lean/misc/paper/lakefile.lean | 18 |
6 files changed, 108 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 +} + diff --git a/tests/lean/misc/constants/lakefile.lean b/tests/lean/misc/constants/lakefile.lean new file mode 100644 index 00000000..ed8eebc2 --- /dev/null +++ b/tests/lean/misc/constants/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «constants» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «Constants» { + -- add library configuration options here +} + diff --git a/tests/lean/misc/external/lakefile.lean b/tests/lean/misc/external/lakefile.lean new file mode 100644 index 00000000..b883f4b9 --- /dev/null +++ b/tests/lean/misc/external/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «external» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «External» { + -- add library configuration options here +} + diff --git a/tests/lean/misc/loops/lakefile.lean b/tests/lean/misc/loops/lakefile.lean new file mode 100644 index 00000000..0d20ba1f --- /dev/null +++ b/tests/lean/misc/loops/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «loops» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «Loops» { + -- add library configuration options here +} + diff --git a/tests/lean/misc/no_nested_borrows/lakefile.lean b/tests/lean/misc/no_nested_borrows/lakefile.lean new file mode 100644 index 00000000..e4460813 --- /dev/null +++ b/tests/lean/misc/no_nested_borrows/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «no_nested_borrows» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «NoNestedBorrows» { + -- add library configuration options here +} + diff --git a/tests/lean/misc/paper/lakefile.lean b/tests/lean/misc/paper/lakefile.lean new file mode 100644 index 00000000..d8affff8 --- /dev/null +++ b/tests/lean/misc/paper/lakefile.lean @@ -0,0 +1,18 @@ +import Lake +open Lake DSL + +require mathlib from git + "https://github.com/leanprover-community/mathlib4.git" + +package «paper» { + -- add package configuration options here +} + +lean_lib «Base» { + -- add library configuration options here +} + +lean_lib «Paper» { + -- add library configuration options here +} + |