-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathlakefile.lean
More file actions
29 lines (23 loc) · 969 Bytes
/
lakefile.lean
File metadata and controls
29 lines (23 loc) · 969 Bytes
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
28
29
import Lake
open Lake DSL
package «Analysis» where
-- Settings applied to both builds and interactive editing
leanOptions := #[
⟨`pp.unicode.fun, true⟩, -- pretty-prints `fun a ↦ b`
⟨`doc.verso, true⟩ -- use Verso-format docstrings
]
-- Settings applied only to command line builds
moreLeanArgs := #[
"-Dwarn.sorry=false" -- suppress warnings about `sorry` on the command line; remove when project is complete
]
-- add any additional package configuration options here
meta if get_config? env = some "dev" then
require «doc-gen4» from git "https://github.com/leanprover/doc-gen4" @ "main"
require verso from git
"https://github.com/leanprover/verso" @ "main"
-- Require Mathlib (the comprehensive library of mathematics in Lean)
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @ "v4.29.0-rc8"
@[default_target]
lean_lib «Analysis» where
-- add any library configuration options here