forked from emilyriehl/infinity-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lakefile.lean
27 lines (22 loc) · 1017 Bytes
/
lakefile.lean
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import Lake
open Lake DSL
/- Define the package configuration for the project.
Includes options for Lean's pretty-printer and implicit argument settings. -/
package «InfinityCosmos» where
leanOptions := #[
⟨`pp.unicode.fun, true⟩, -- Pretty-print `fun a ↦ b`
⟨`autoImplicit, false⟩, -- Disable auto-implicit arguments
⟨`relaxedAutoImplicit, false⟩ -- Disable relaxed auto-implicit arguments
]
/- Specify external dependencies required for this project. -/
require mathlib from git "https://github.com/leanprover-community/mathlib4.git"
/- Define the default Lean library target for the project.
This can be customized with additional library configuration options.
-/
@[default_target]
lean_lib «InfinityCosmos» where
-- Add any library configuration options here
require checkdecls from git "https://github.com/PatrickMassot/checkdecls.git"
meta if get_config? env = some "dev" then
require «doc-gen4» from git
"https://github.com/leanprover/doc-gen4" @ "main"