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/misc | |
parent | 0d8433a5e7a2d1e91512a6422506dbd19241d128 (diff) |
Generate all the lakefile.lean files
Diffstat (limited to '')
-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 |
5 files changed, 90 insertions, 0 deletions
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 +} + |