From 839c2f0f02788825455f46516d988c9fdb8cf6a7 Mon Sep 17 00:00:00 2001 From: Son Ho Date: Tue, 7 Mar 2023 12:31:46 +0100 Subject: Generate all the lakefile.lean files --- tests/lean/hashmap/lakefile.lean | 18 ++++++++++++++++++ tests/lean/misc/constants/lakefile.lean | 18 ++++++++++++++++++ tests/lean/misc/external/lakefile.lean | 18 ++++++++++++++++++ tests/lean/misc/loops/lakefile.lean | 18 ++++++++++++++++++ tests/lean/misc/no_nested_borrows/lakefile.lean | 18 ++++++++++++++++++ tests/lean/misc/paper/lakefile.lean | 18 ++++++++++++++++++ 6 files changed, 108 insertions(+) create mode 100644 tests/lean/hashmap/lakefile.lean create mode 100644 tests/lean/misc/constants/lakefile.lean create mode 100644 tests/lean/misc/external/lakefile.lean create mode 100644 tests/lean/misc/loops/lakefile.lean create mode 100644 tests/lean/misc/no_nested_borrows/lakefile.lean create mode 100644 tests/lean/misc/paper/lakefile.lean 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 +} + -- cgit v1.2.3